@zio.dev/zio-sbt 0.4.9 → 0.4.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.md +8 -4
  2. package/package.json +1 -1
package/index.md CHANGED
@@ -12,9 +12,9 @@ _ZIO SBT_ contains multiple sbt plugins that are useful for ZIO projects. It pro
12
12
  Add the following lines to your `plugin.sbt` file:
13
13
 
14
14
  ```scala
15
- addSbtPlugin("dev.zio" % "zio-sbt-ecosystem" % "0.4.9")
16
- addSbtPlugin("dev.zio" % "zio-sbt-ci" % "0.4.9")
17
- addSbtPlugin("dev.zio" % "zio-sbt-website" % "0.4.9")
15
+ addSbtPlugin("dev.zio" % "zio-sbt-ecosystem" % "0.4.11")
16
+ addSbtPlugin("dev.zio" % "zio-sbt-ci" % "0.4.11")
17
+ addSbtPlugin("dev.zio" % "zio-sbt-website" % "0.4.11")
18
18
  ```
19
19
 
20
20
  Then you can enable them by using the following code in your `build.sbt` file:
@@ -27,6 +27,10 @@ enablePlugins(
27
27
  )
28
28
  ```
29
29
 
30
+ :::note
31
+ Always try to keep the SBT version specified in the `project/build.properties` file up to date to ensure compatibility with the ZIO SBT plugins.
32
+ :::
33
+
30
34
  ## ZIO SBT Ecosystem
31
35
 
32
36
  ZIO SBT Ecosystem plugin is an sbt plugin that provides a set of sbt settings and tasks that are very common and useful for configuring and managing ZIO projects. It is designed help developers to quickly set up a new ZIO project with a minimal amount of effort.
@@ -97,7 +101,7 @@ ZIO SBT CI plugin generates a default GitHub workflow that includes common CI ta
97
101
  To use ZIO SBT CI plugin, add the following lines to your `plugins.sbt` file:
98
102
 
99
103
  ```scala
100
- addSbtPlugin("dev.zio" % "zio-sbt-ci" % "0.4.9")
104
+ addSbtPlugin("dev.zio" % "zio-sbt-ci" % "0.4.11")
101
105
 
102
106
  resolvers ++= Resolver.sonatypeOssRepos("public")
103
107
  ```
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@zio.dev/zio-sbt",
3
3
  "description": "ZIO SBT Documentation",
4
4
  "license": "Apache-2.0",
5
- "version": "0.4.9",
5
+ "version": "0.4.11",
6
6
  "repository": {
7
7
  "url": "https://github.com/zio/zio-sbt"
8
8
  }