@zio.dev/zio-sbt 0.4.0-alpha.25 → 0.4.0-alpha.27

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 +5 -5
  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.0-alpha.25")
16
- addSbtPlugin("dev.zio" % "zio-sbt-ci" % "0.4.0-alpha.25")
17
- addSbtPlugin("dev.zio" % "zio-sbt-website" % "0.4.0-alpha.25")
15
+ addSbtPlugin("dev.zio" % "zio-sbt-ecosystem" % "0.4.0-alpha.27")
16
+ addSbtPlugin("dev.zio" % "zio-sbt-ci" % "0.4.0-alpha.27")
17
+ addSbtPlugin("dev.zio" % "zio-sbt-website" % "0.4.0-alpha.27")
18
18
  ```
19
19
 
20
20
  Then you can enable them by using the following code in your `build.sbt` file:
@@ -97,7 +97,7 @@ ZIO SBT CI plugin generates a default GitHub workflow that includes common CI ta
97
97
  To use ZIO SBT CI plugin, add the following lines to your `plugins.sbt` file:
98
98
 
99
99
  ```scala
100
- addSbtPlugin("dev.zio" % "zio-sbt-ci" % "0.4.0-alpha.25")
100
+ addSbtPlugin("dev.zio" % "zio-sbt-ci" % "0.4.0-alpha.27")
101
101
 
102
102
  resolvers ++= Resolver.sonatypeOssRepos("public")
103
103
  ```
@@ -129,7 +129,7 @@ This will generate a GitHub workflow file inside the `.github/workflows` directo
129
129
 
130
130
  ### Default Testing Strategy
131
131
 
132
- The default testing strategy for ZIO SBT CI plugin is to run `sbt +test` on java 8, 11 and 17. So this will generate the following job:
132
+ The default testing strategy for ZIO SBT CI plugin is to run `sbt +test` on Corretto Java 11, 17 and 21. So this will generate the following job:
133
133
 
134
134
  ```yaml
135
135
  test:
package/package.json CHANGED
@@ -2,5 +2,5 @@
2
2
  "name": "@zio.dev/zio-sbt",
3
3
  "description": "ZIO SBT Documentation",
4
4
  "license": "Apache-2.0",
5
- "version": "0.4.0-alpha.25"
5
+ "version": "0.4.0-alpha.27"
6
6
  }