@zio.dev/zio-sbt 0.5.0 → 0.5.1
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.
- package/index.md +5 -5
- 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.5.
|
|
16
|
-
addSbtPlugin("dev.zio" % "zio-sbt-ci" % "0.5.
|
|
17
|
-
addSbtPlugin("dev.zio" % "zio-sbt-website" % "0.5.
|
|
15
|
+
addSbtPlugin("dev.zio" % "zio-sbt-ecosystem" % "0.5.1")
|
|
16
|
+
addSbtPlugin("dev.zio" % "zio-sbt-ci" % "0.5.1")
|
|
17
|
+
addSbtPlugin("dev.zio" % "zio-sbt-website" % "0.5.1")
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
Then you can enable them by using the following code in your `build.sbt` file:
|
|
@@ -101,7 +101,7 @@ ZIO SBT CI plugin generates a default GitHub workflow that includes common CI ta
|
|
|
101
101
|
To use ZIO SBT CI plugin, add the following lines to your `plugins.sbt` file:
|
|
102
102
|
|
|
103
103
|
```scala
|
|
104
|
-
addSbtPlugin("dev.zio" % "zio-sbt-ci" % "0.5.
|
|
104
|
+
addSbtPlugin("dev.zio" % "zio-sbt-ci" % "0.5.1")
|
|
105
105
|
|
|
106
106
|
resolvers ++= Resolver.sonatypeOssRepos("public")
|
|
107
107
|
```
|
|
@@ -138,7 +138,7 @@ ZIO SBT GitHub Query is an sbt plugin for fetching GitHub issues/PRs and buildin
|
|
|
138
138
|
Add to `plugins.sbt`:
|
|
139
139
|
|
|
140
140
|
```scala
|
|
141
|
-
addSbtPlugin("dev.zio" % "zio-sbt-gh-query" % "0.5.
|
|
141
|
+
addSbtPlugin("dev.zio" % "zio-sbt-gh-query" % "0.5.1")
|
|
142
142
|
```
|
|
143
143
|
|
|
144
144
|
The plugin is auto-enabled. Configure in `build.sbt`:
|