Skip to content

Commit b0306e1

Browse files
author
changvvb
committed
update version
1 parent 3020549 commit b0306e1

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,24 @@
44
[![codecov](https://codecov.io/gh/changvvb/scala-protobuf-java/branch/master/graph/badge.svg)](https://codecov.io/gh/changvvb/scala-protobuf-java)
55
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.changvvb/scala-protobuf-java_2.13/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.changvvb/scala-protobuf-java_2.13)
66

7+
### News
8+
`scala-protobuf-java` has support scala 3.
79

810
### What is this
911
`scala-protobuf-java` is a conversion tool between `scala` types and `protobuf-java` types. It can help impatient you save a lot of codes.
1012
`scala-protobuf-java` use scala macro to generate what you need, so it's type safe at compile time. Now you just keep free to write your code, `scala-proto-java` will check the error at compile time.
1113

1214
### Import to your project
13-
sbt (for `2.12` and `2.13`. If you need more, just submit a issue or PR)
15+
sbt (for `2.12`, `2.13` and scala 3. If you need more, just submit a issue or PR)
1416
```scala
15-
libraryDependencies += "com.github.changvvb" %% "scala-protobuf-java" % "0.2.0"
17+
libraryDependencies += "com.github.changvvb" %% "scala-protobuf-java" % "0.3.0"
1618
```
1719
maven
1820
```xml
1921
<dependency>
2022
<groupId>com.github.changvvb</groupId>
2123
<artifactId>scala-protobuf-java_2.13</artifactId>
22-
<version>0.2.0</version>
24+
<version>0.3.0</version>
2325
</dependency>
2426
```
2527

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ThisBuild / version := "0.2.0"
1+
ThisBuild / version := "0.3.0"

0 commit comments

Comments
 (0)