Skip to content

Commit 33f55be

Browse files
authored
chore: release 0.3.2 (#150)
1 parent c67a980 commit 33f55be

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
arguments: "-c .scalafmt.conf --test"
2323
- uses: jodersky/setup-mill@v0.3.0
2424
with:
25-
mill-version: 0.11.2
25+
mill-version: 0.11.4
2626
- name: Compile
2727
run: mill '__.compile'
2828
- name: Test

.github/workflows/publish_snapshot.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: actions/checkout@v2
1515
- uses: jodersky/setup-mill@v0.3.0
1616
with:
17-
mill-version: 0.11.2
17+
mill-version: 0.11.4
1818
- name: Import GPG key
1919
id: import_gpg
2020
uses: crazy-max/ghaction-import-gpg@v3

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
uses: actions/checkout@v2
1212
- uses: jodersky/setup-mill@v0.3.0
1313
with:
14-
mill-version: 0.11.2
14+
mill-version: 0.11.4
1515
- name: Import GPG key
1616
id: import_gpg
1717
uses: crazy-max/ghaction-import-gpg@v3

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ Add the following dependency to your project's build file
1212

1313
```scala
1414
// sbt
15-
"com.bot4s" %% "zmatrix" % "0.3.1"
15+
"com.bot4s" %% "zmatrix" % "0.3.2"
1616
// mill
17-
ivy"com.bot4s::zmatrix:0.3.1"
17+
ivy"com.bot4s::zmatrix:0.3.2"
1818
```
1919

2020
It is also possible to get the latest snapshot from [Snapshot Artifacts][link-sonatypesnapshots] by adding the following

build.sc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ val scalaVersions = List("2.12.17", "2.13.12", "3.3.1")
1919

2020
trait Publishable extends PublishModule {
2121
override def artifactName = "zmatrix"
22-
override def publishVersion = "0.3.1"
22+
override def publishVersion = "0.3.2"
2323

2424
override def pomSettings = PomSettings(
2525
description = "Matrix.org API client written using ZIO",

0 commit comments

Comments
 (0)