File tree Expand file tree Collapse file tree 2 files changed +15
-11
lines changed
Expand file tree Collapse file tree 2 files changed +15
-11
lines changed Original file line number Diff line number Diff line change @@ -8,18 +8,13 @@ A [matrix](https://matrix.org/) client implemented using ZIO.
88
99## Installation
1010
11- The lib is currently not released on any artifactory, the first version should be out pretty soon.
12- It is possible to use it by cloning this repository and publishing the jar locally:
13-
14- ```
15- mill __.publishM2Local
16- mill __.publishLocal
17- ```
18-
1911Add the following dependency to your project's build file
2012
2113``` scala
22- " com.bot4s" %% " zmatrix" % " 0.0.1"
14+ // sbt
15+ " com.bot4s" %% " zmatrix" % " 0.1.0"
16+ // mill
17+ ivy " com.bot4s::zmatrix:0.1.0 "
2318```
2419
2520It is also possible to get the latest snapshot from [ Snapshot Artifacts] [ link-sonatypesnapshots ] by adding the following
@@ -123,6 +118,15 @@ The `examples` package comtains runnable examples for `zmatrix`. Examples can be
123118mill -i examples[_].run
124119```
125120
121+ ## Building
122+
123+ A local version of the library can be published by running those two commands:
124+
125+ ```
126+ mill __.publishM2Local
127+ mill __.publishLocal
128+ ```
129+
126130## References
127131
128132The design of the lib was heavily inspired by the work done on [ zio-slack] ( https://github.com/Dapperware/zio-slack/blob/master/README.md ) .
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ import mill.scalalib._
66object Versions {
77 val zioMagicVersion = " 0.2.3"
88 val zioLoggingVersion = " 0.5.8"
9- val zioVersion = " 1.0.3 "
9+ val zioVersion = " 1.0.7 "
1010 val sttpVersion = " 3.2.3"
1111 val circeVersion = " 0.13.0"
1212 val pureConfigVersion = " 0.14.1"
@@ -16,7 +16,7 @@ val scalaVersions = List("2.12.13", "2.13.5")
1616
1717trait Publishable extends PublishModule {
1818 override def artifactName = s " zmatrix "
19- override def publishVersion = " 0.0.1 "
19+ override def publishVersion = " 0.1.0 "
2020
2121 override def pomSettings = PomSettings (
2222 description = " Matrix.org API client written using ZIO" ,
You can’t perform that action at this time.
0 commit comments