Skip to content

Commit e832d1d

Browse files
committed
Release version 1.0.0
1 parent 1b44f65 commit e832d1d

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ _Note:_ Currently [Treehugger](http://eed3si9n.com/treehugger/comments.html#Scal
123123

124124
##### Get the dependency with:
125125

126-
"com.julianpeeters" %% "avrohugger-core" % "1.0.0-RC31"
126+
"com.julianpeeters" %% "avrohugger-core" % "1.0.0"
127127

128128

129129
##### Description:
@@ -210,7 +210,7 @@ namespace rewritten. Multiple conflicting wildcards are not permitted.
210210

211211
##### Get the dependency with:
212212

213-
"com.julianpeeters" %% "avrohugger-filesorter" % "1.0.0-RC31"
213+
"com.julianpeeters" %% "avrohugger-filesorter" % "1.0.0"
214214

215215

216216
##### Description:
@@ -230,22 +230,22 @@ To ensure dependent schemas are compiled in the proper order (thus avoiding `org
230230
#### `avrohugger-tools`
231231

232232

233-
Download the avrohugger-tools jar for Scala [2.12](https://search.maven.org/remotecontent?filepath=com/julianpeeters/avrohugger-tools_2.12/1.0.0-RC31/avrohugger-tools_2.12-1.0.0-RC31-assembly.jar), or Scala [2.13](https://search.maven.org/remotecontent?filepath=com/julianpeeters/avrohugger-tools_2.13/1.0.0-RC31/avrohugger-tools_2.13-1.0.0-RC31-assembly.jar) (>30MB!) and use it like the avro-tools jar `Usage: [-string] (schema|protocol|datafile) input... outputdir`:
233+
Download the avrohugger-tools jar for Scala [2.12](https://search.maven.org/remotecontent?filepath=com/julianpeeters/avrohugger-tools_2.12/1.0.0/avrohugger-tools_2.12-1.0.0-assembly.jar), or Scala [2.13](https://search.maven.org/remotecontent?filepath=com/julianpeeters/avrohugger-tools_2.13/1.0.0/avrohugger-tools_2.13-1.0.0-assembly.jar) (>30MB!) and use it like the avro-tools jar `Usage: [-string] (schema|protocol|datafile) input... outputdir`:
234234

235235

236236
* `generate` generates Scala case class definitions:
237237

238-
`java -jar /path/to/avrohugger-tools_2.12-1.0.0-RC31-assembly.jar generate schema user.avsc . `
238+
`java -jar /path/to/avrohugger-tools_2.12-1.0.0-assembly.jar generate schema user.avsc . `
239239

240240

241241
* `generate-specific` generates definitions that extend Avro's `SpecificRecordBase`:
242242

243-
`java -jar /path/to/avrohugger-tools_2.12-1.0.0-RC31-assembly.jar generate-specific schema user.avsc . `
243+
`java -jar /path/to/avrohugger-tools_2.12-1.0.0-assembly.jar generate-specific schema user.avsc . `
244244

245245

246246
* `generate-scavro` generates definitions that extend Scavro's `AvroSerializable`:
247247

248-
`java -jar /path/to/avrohugger-tools_2.12-1.0.0-RC31-assembly.jar generate-scavro schema user.avsc . `
248+
`java -jar /path/to/avrohugger-tools_2.12-1.0.0-assembly.jar generate-scavro schema user.avsc . `
249249

250250

251251
## Warnings

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val avroVersion = "1.11.0"
22

33
lazy val commonSettings = Seq(
44
organization := "com.julianpeeters",
5-
version := "1.0.0-RC31",
5+
version := "1.0.0",
66
ThisBuild / versionScheme := Some("semver-spec"),
77
scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature"),
88
Test / scalacOptions ++= Seq("-Yrangepos"),

0 commit comments

Comments
 (0)