DEV Community

Zenql
Zenql

Posted on

ZenQL Goes Modular

๐Ÿ’ก We are announcing that after the release of v2.0.0, the ZenQL package becomes modular. This means you will need to install the Collections, Streams, and Database modules separately. This is a breaking change and requires attention from all users. here is how:

go get github.com/malikhan-dev/zenql/streams@v2.0.0
go get github.com/malikhan-dev/zenql/collections/Thor@v2.0.0
go get github.com/malikhan-dev/zenql/contracts@v2.0.0
go get github.com/malikhan-dev/zenql/databases@v2.0.0

Enter fullscreen mode Exit fullscreen mode

After this release, you can choose exactly which modules to install. For example, you might want just the collections and streams modules while using GORM for database connectivity โ€” no need to pull in the database package.

Want a taste of whatโ€™s coming next? We have a pre-release of v1.8.3 available for testing. Donโ€™t use it in production and wait for v2.0.0

go get github.com/malikhan-dev/zenql/streams@v1.8.3
go get github.com/malikhan-dev/zenql/collections/Thor@v1.8.3
go get github.com/malikhan-dev/zenql/contracts@v1.8.3
go get github.com/malikhan-dev/zenql/databases@v1.8.3

Enter fullscreen mode Exit fullscreen mode

Top comments (0)