From 122b9d5faea05542f1b4280a51d0e8c5436e7e55 Mon Sep 17 00:00:00 2001 From: Julian Peeters Date: Fri, 5 Jan 2024 19:28:45 -0800 Subject: [PATCH] Release 2.8.2 --- README.md | 2 +- build.sbt | 6 +++--- project/build.properties | 2 +- .../GenericADTSerializationTests/project/build.properties | 2 +- .../GenericADTSerializationTests/project/plugins.sbt | 2 +- .../project/build.properties | 2 +- .../project/plugins.sbt | 2 +- .../project/build.properties | 2 +- .../project/plugins.sbt | 2 +- .../project/build.properties | 2 +- .../GenericJavaEnumSerializationTests/project/plugins.sbt | 2 +- .../project/build.properties | 2 +- .../project/plugins.sbt | 2 +- .../project/build.properties | 2 +- .../project/plugins.sbt | 2 +- .../GenericSerializationTests/project/build.properties | 2 +- .../GenericSerializationTests/project/plugins.sbt | 2 +- .../project/build.properties | 2 +- .../GenericStringEnumSerializationTests/project/plugins.sbt | 2 +- .../avrohugger/OverrideSettings/project/build.properties | 2 +- .../avrohugger/OverrideSettings/project/plugins.sbt | 2 +- .../SpecificADTSerializationTests/project/build.properties | 2 +- .../SpecificADTSerializationTests/project/plugins.sbt | 2 +- .../SpecificSerializationTests/project/build.properties | 2 +- .../SpecificSerializationTests/project/plugins.sbt | 2 +- .../project/build.properties | 2 +- .../project/plugins.sbt | 2 +- .../project/build.properties | 2 +- .../SpecificVectorSerializationTests/project/plugins.sbt | 2 +- src/sbt-test/avrohugger/filesorter/project/build.properties | 2 +- src/sbt-test/avrohugger/filesorter/project/plugins.sbt | 2 +- src/sbt-test/sbt-avrohugger/module/project/build.properties | 2 +- .../overridesettings/project/build.properties | 2 +- .../sbt-avrohugger/overridesettings/project/plugins.sbt | 2 +- .../sbt-avrohugger/specific/project/build.properties | 2 +- .../sbt-avrohugger/standard/project/build.properties | 2 +- 36 files changed, 38 insertions(+), 38 deletions(-) diff --git a/README.md b/README.md index d4f9726..e4c913f 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Install the plugin (compatible with sbt 1.3+) Add the following lines to the file ``myproject/project/plugins.sbt`` in your project directory: - addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.1") + addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.2") diff --git a/build.sbt b/build.sbt index 5ac1918..5bb0997 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,6 @@ ThisBuild / organization := "com.julianpeeters" ThisBuild / description := "Sbt plugin for compiling Avro to Scala" -ThisBuild / version := "2.8.1" +ThisBuild / version := "2.8.2" ThisBuild / versionScheme := Some("semver-spec") enablePlugins(SbtPlugin) @@ -14,8 +14,8 @@ ThisBuild / crossSbtVersions := Seq(sbtVersion.value) ThisBuild / scalacOptions ++= Seq("-unchecked", "-deprecation", "-feature", "-Ywarn-value-discard") ThisBuild / libraryDependencies ++= Seq( - "com.julianpeeters" %% "avrohugger-core" % "2.8.1", - "com.julianpeeters" %% "avrohugger-filesorter" % "2.8.1", + "com.julianpeeters" %% "avrohugger-core" % "2.8.2", + "com.julianpeeters" %% "avrohugger-filesorter" % "2.8.2", "io.spray" %% "spray-json" % "1.3.6", "org.specs2" %% "specs2-core" % "4.20.2" % "test") diff --git a/project/build.properties b/project/build.properties index d415199..8cf07b7 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.7 \ No newline at end of file +sbt.version=1.9.8 \ No newline at end of file diff --git a/src/sbt-test/avrohugger/GenericADTSerializationTests/project/build.properties b/src/sbt-test/avrohugger/GenericADTSerializationTests/project/build.properties index e8a1e24..abbbce5 100644 --- a/src/sbt-test/avrohugger/GenericADTSerializationTests/project/build.properties +++ b/src/sbt-test/avrohugger/GenericADTSerializationTests/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.7 +sbt.version=1.9.8 diff --git a/src/sbt-test/avrohugger/GenericADTSerializationTests/project/plugins.sbt b/src/sbt-test/avrohugger/GenericADTSerializationTests/project/plugins.sbt index 4fc52a4..fa8403d 100644 --- a/src/sbt-test/avrohugger/GenericADTSerializationTests/project/plugins.sbt +++ b/src/sbt-test/avrohugger/GenericADTSerializationTests/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.1") +addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.2") resolvers += Resolver.file("Local Ivy Repository", file(Path.userHome.absolutePath + "/.ivy2/local/"))(Resolver.ivyStylePatterns) diff --git a/src/sbt-test/avrohugger/GenericCaseObjectEnumSerializationTests/project/build.properties b/src/sbt-test/avrohugger/GenericCaseObjectEnumSerializationTests/project/build.properties index e8a1e24..abbbce5 100644 --- a/src/sbt-test/avrohugger/GenericCaseObjectEnumSerializationTests/project/build.properties +++ b/src/sbt-test/avrohugger/GenericCaseObjectEnumSerializationTests/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.7 +sbt.version=1.9.8 diff --git a/src/sbt-test/avrohugger/GenericCaseObjectEnumSerializationTests/project/plugins.sbt b/src/sbt-test/avrohugger/GenericCaseObjectEnumSerializationTests/project/plugins.sbt index 4fc52a4..fa8403d 100644 --- a/src/sbt-test/avrohugger/GenericCaseObjectEnumSerializationTests/project/plugins.sbt +++ b/src/sbt-test/avrohugger/GenericCaseObjectEnumSerializationTests/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.1") +addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.2") resolvers += Resolver.file("Local Ivy Repository", file(Path.userHome.absolutePath + "/.ivy2/local/"))(Resolver.ivyStylePatterns) diff --git a/src/sbt-test/avrohugger/GenericDecimalTaggedSerializationTests/project/build.properties b/src/sbt-test/avrohugger/GenericDecimalTaggedSerializationTests/project/build.properties index e8a1e24..abbbce5 100644 --- a/src/sbt-test/avrohugger/GenericDecimalTaggedSerializationTests/project/build.properties +++ b/src/sbt-test/avrohugger/GenericDecimalTaggedSerializationTests/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.7 +sbt.version=1.9.8 diff --git a/src/sbt-test/avrohugger/GenericDecimalTaggedSerializationTests/project/plugins.sbt b/src/sbt-test/avrohugger/GenericDecimalTaggedSerializationTests/project/plugins.sbt index 4fc52a4..fa8403d 100644 --- a/src/sbt-test/avrohugger/GenericDecimalTaggedSerializationTests/project/plugins.sbt +++ b/src/sbt-test/avrohugger/GenericDecimalTaggedSerializationTests/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.1") +addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.2") resolvers += Resolver.file("Local Ivy Repository", file(Path.userHome.absolutePath + "/.ivy2/local/"))(Resolver.ivyStylePatterns) diff --git a/src/sbt-test/avrohugger/GenericJavaEnumSerializationTests/project/build.properties b/src/sbt-test/avrohugger/GenericJavaEnumSerializationTests/project/build.properties index e8a1e24..abbbce5 100644 --- a/src/sbt-test/avrohugger/GenericJavaEnumSerializationTests/project/build.properties +++ b/src/sbt-test/avrohugger/GenericJavaEnumSerializationTests/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.7 +sbt.version=1.9.8 diff --git a/src/sbt-test/avrohugger/GenericJavaEnumSerializationTests/project/plugins.sbt b/src/sbt-test/avrohugger/GenericJavaEnumSerializationTests/project/plugins.sbt index 4fc52a4..fa8403d 100644 --- a/src/sbt-test/avrohugger/GenericJavaEnumSerializationTests/project/plugins.sbt +++ b/src/sbt-test/avrohugger/GenericJavaEnumSerializationTests/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.1") +addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.2") resolvers += Resolver.file("Local Ivy Repository", file(Path.userHome.absolutePath + "/.ivy2/local/"))(Resolver.ivyStylePatterns) diff --git a/src/sbt-test/avrohugger/GenericOptionShapelessUnionsSerializationTests/project/build.properties b/src/sbt-test/avrohugger/GenericOptionShapelessUnionsSerializationTests/project/build.properties index e8a1e24..abbbce5 100644 --- a/src/sbt-test/avrohugger/GenericOptionShapelessUnionsSerializationTests/project/build.properties +++ b/src/sbt-test/avrohugger/GenericOptionShapelessUnionsSerializationTests/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.7 +sbt.version=1.9.8 diff --git a/src/sbt-test/avrohugger/GenericOptionShapelessUnionsSerializationTests/project/plugins.sbt b/src/sbt-test/avrohugger/GenericOptionShapelessUnionsSerializationTests/project/plugins.sbt index 4fc52a4..fa8403d 100644 --- a/src/sbt-test/avrohugger/GenericOptionShapelessUnionsSerializationTests/project/plugins.sbt +++ b/src/sbt-test/avrohugger/GenericOptionShapelessUnionsSerializationTests/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.1") +addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.2") resolvers += Resolver.file("Local Ivy Repository", file(Path.userHome.absolutePath + "/.ivy2/local/"))(Resolver.ivyStylePatterns) diff --git a/src/sbt-test/avrohugger/GenericOptionalShapelessUnionsSerializationTests/project/build.properties b/src/sbt-test/avrohugger/GenericOptionalShapelessUnionsSerializationTests/project/build.properties index e8a1e24..abbbce5 100644 --- a/src/sbt-test/avrohugger/GenericOptionalShapelessUnionsSerializationTests/project/build.properties +++ b/src/sbt-test/avrohugger/GenericOptionalShapelessUnionsSerializationTests/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.7 +sbt.version=1.9.8 diff --git a/src/sbt-test/avrohugger/GenericOptionalShapelessUnionsSerializationTests/project/plugins.sbt b/src/sbt-test/avrohugger/GenericOptionalShapelessUnionsSerializationTests/project/plugins.sbt index 4fc52a4..fa8403d 100644 --- a/src/sbt-test/avrohugger/GenericOptionalShapelessUnionsSerializationTests/project/plugins.sbt +++ b/src/sbt-test/avrohugger/GenericOptionalShapelessUnionsSerializationTests/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.1") +addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.2") resolvers += Resolver.file("Local Ivy Repository", file(Path.userHome.absolutePath + "/.ivy2/local/"))(Resolver.ivyStylePatterns) diff --git a/src/sbt-test/avrohugger/GenericSerializationTests/project/build.properties b/src/sbt-test/avrohugger/GenericSerializationTests/project/build.properties index e8a1e24..abbbce5 100644 --- a/src/sbt-test/avrohugger/GenericSerializationTests/project/build.properties +++ b/src/sbt-test/avrohugger/GenericSerializationTests/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.7 +sbt.version=1.9.8 diff --git a/src/sbt-test/avrohugger/GenericSerializationTests/project/plugins.sbt b/src/sbt-test/avrohugger/GenericSerializationTests/project/plugins.sbt index 4fc52a4..fa8403d 100644 --- a/src/sbt-test/avrohugger/GenericSerializationTests/project/plugins.sbt +++ b/src/sbt-test/avrohugger/GenericSerializationTests/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.1") +addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.2") resolvers += Resolver.file("Local Ivy Repository", file(Path.userHome.absolutePath + "/.ivy2/local/"))(Resolver.ivyStylePatterns) diff --git a/src/sbt-test/avrohugger/GenericStringEnumSerializationTests/project/build.properties b/src/sbt-test/avrohugger/GenericStringEnumSerializationTests/project/build.properties index e8a1e24..abbbce5 100644 --- a/src/sbt-test/avrohugger/GenericStringEnumSerializationTests/project/build.properties +++ b/src/sbt-test/avrohugger/GenericStringEnumSerializationTests/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.7 +sbt.version=1.9.8 diff --git a/src/sbt-test/avrohugger/GenericStringEnumSerializationTests/project/plugins.sbt b/src/sbt-test/avrohugger/GenericStringEnumSerializationTests/project/plugins.sbt index 4fc52a4..fa8403d 100644 --- a/src/sbt-test/avrohugger/GenericStringEnumSerializationTests/project/plugins.sbt +++ b/src/sbt-test/avrohugger/GenericStringEnumSerializationTests/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.1") +addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.2") resolvers += Resolver.file("Local Ivy Repository", file(Path.userHome.absolutePath + "/.ivy2/local/"))(Resolver.ivyStylePatterns) diff --git a/src/sbt-test/avrohugger/OverrideSettings/project/build.properties b/src/sbt-test/avrohugger/OverrideSettings/project/build.properties index e8a1e24..abbbce5 100644 --- a/src/sbt-test/avrohugger/OverrideSettings/project/build.properties +++ b/src/sbt-test/avrohugger/OverrideSettings/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.7 +sbt.version=1.9.8 diff --git a/src/sbt-test/avrohugger/OverrideSettings/project/plugins.sbt b/src/sbt-test/avrohugger/OverrideSettings/project/plugins.sbt index 91ced90..b1c0e5c 100644 --- a/src/sbt-test/avrohugger/OverrideSettings/project/plugins.sbt +++ b/src/sbt-test/avrohugger/OverrideSettings/project/plugins.sbt @@ -1,3 +1,3 @@ -addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.1") +addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.2") resolvers += Resolver.file("Local Ivy Repository", file("~/.ivy2/local/"))(Resolver.ivyStylePatterns) diff --git a/src/sbt-test/avrohugger/SpecificADTSerializationTests/project/build.properties b/src/sbt-test/avrohugger/SpecificADTSerializationTests/project/build.properties index e8a1e24..abbbce5 100644 --- a/src/sbt-test/avrohugger/SpecificADTSerializationTests/project/build.properties +++ b/src/sbt-test/avrohugger/SpecificADTSerializationTests/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.7 +sbt.version=1.9.8 diff --git a/src/sbt-test/avrohugger/SpecificADTSerializationTests/project/plugins.sbt b/src/sbt-test/avrohugger/SpecificADTSerializationTests/project/plugins.sbt index 4fc52a4..fa8403d 100644 --- a/src/sbt-test/avrohugger/SpecificADTSerializationTests/project/plugins.sbt +++ b/src/sbt-test/avrohugger/SpecificADTSerializationTests/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.1") +addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.2") resolvers += Resolver.file("Local Ivy Repository", file(Path.userHome.absolutePath + "/.ivy2/local/"))(Resolver.ivyStylePatterns) diff --git a/src/sbt-test/avrohugger/SpecificSerializationTests/project/build.properties b/src/sbt-test/avrohugger/SpecificSerializationTests/project/build.properties index d415199..8cf07b7 100644 --- a/src/sbt-test/avrohugger/SpecificSerializationTests/project/build.properties +++ b/src/sbt-test/avrohugger/SpecificSerializationTests/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.7 \ No newline at end of file +sbt.version=1.9.8 \ No newline at end of file diff --git a/src/sbt-test/avrohugger/SpecificSerializationTests/project/plugins.sbt b/src/sbt-test/avrohugger/SpecificSerializationTests/project/plugins.sbt index 4fc52a4..fa8403d 100644 --- a/src/sbt-test/avrohugger/SpecificSerializationTests/project/plugins.sbt +++ b/src/sbt-test/avrohugger/SpecificSerializationTests/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.1") +addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.2") resolvers += Resolver.file("Local Ivy Repository", file(Path.userHome.absolutePath + "/.ivy2/local/"))(Resolver.ivyStylePatterns) diff --git a/src/sbt-test/avrohugger/SpecificStringEnumSerializationTests/project/build.properties b/src/sbt-test/avrohugger/SpecificStringEnumSerializationTests/project/build.properties index e8a1e24..abbbce5 100644 --- a/src/sbt-test/avrohugger/SpecificStringEnumSerializationTests/project/build.properties +++ b/src/sbt-test/avrohugger/SpecificStringEnumSerializationTests/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.7 +sbt.version=1.9.8 diff --git a/src/sbt-test/avrohugger/SpecificStringEnumSerializationTests/project/plugins.sbt b/src/sbt-test/avrohugger/SpecificStringEnumSerializationTests/project/plugins.sbt index 4fc52a4..fa8403d 100644 --- a/src/sbt-test/avrohugger/SpecificStringEnumSerializationTests/project/plugins.sbt +++ b/src/sbt-test/avrohugger/SpecificStringEnumSerializationTests/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.1") +addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.2") resolvers += Resolver.file("Local Ivy Repository", file(Path.userHome.absolutePath + "/.ivy2/local/"))(Resolver.ivyStylePatterns) diff --git a/src/sbt-test/avrohugger/SpecificVectorSerializationTests/project/build.properties b/src/sbt-test/avrohugger/SpecificVectorSerializationTests/project/build.properties index e8a1e24..abbbce5 100644 --- a/src/sbt-test/avrohugger/SpecificVectorSerializationTests/project/build.properties +++ b/src/sbt-test/avrohugger/SpecificVectorSerializationTests/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.7 +sbt.version=1.9.8 diff --git a/src/sbt-test/avrohugger/SpecificVectorSerializationTests/project/plugins.sbt b/src/sbt-test/avrohugger/SpecificVectorSerializationTests/project/plugins.sbt index 4fc52a4..fa8403d 100644 --- a/src/sbt-test/avrohugger/SpecificVectorSerializationTests/project/plugins.sbt +++ b/src/sbt-test/avrohugger/SpecificVectorSerializationTests/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.1") +addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.2") resolvers += Resolver.file("Local Ivy Repository", file(Path.userHome.absolutePath + "/.ivy2/local/"))(Resolver.ivyStylePatterns) diff --git a/src/sbt-test/avrohugger/filesorter/project/build.properties b/src/sbt-test/avrohugger/filesorter/project/build.properties index d415199..8cf07b7 100644 --- a/src/sbt-test/avrohugger/filesorter/project/build.properties +++ b/src/sbt-test/avrohugger/filesorter/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.7 \ No newline at end of file +sbt.version=1.9.8 \ No newline at end of file diff --git a/src/sbt-test/avrohugger/filesorter/project/plugins.sbt b/src/sbt-test/avrohugger/filesorter/project/plugins.sbt index 99b49eb..1e8abea 100644 --- a/src/sbt-test/avrohugger/filesorter/project/plugins.sbt +++ b/src/sbt-test/avrohugger/filesorter/project/plugins.sbt @@ -1 +1 @@ -addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.1") \ No newline at end of file +addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.2") \ No newline at end of file diff --git a/src/sbt-test/sbt-avrohugger/module/project/build.properties b/src/sbt-test/sbt-avrohugger/module/project/build.properties index e8a1e24..abbbce5 100644 --- a/src/sbt-test/sbt-avrohugger/module/project/build.properties +++ b/src/sbt-test/sbt-avrohugger/module/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.7 +sbt.version=1.9.8 diff --git a/src/sbt-test/sbt-avrohugger/overridesettings/project/build.properties b/src/sbt-test/sbt-avrohugger/overridesettings/project/build.properties index e8a1e24..abbbce5 100644 --- a/src/sbt-test/sbt-avrohugger/overridesettings/project/build.properties +++ b/src/sbt-test/sbt-avrohugger/overridesettings/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.7 +sbt.version=1.9.8 diff --git a/src/sbt-test/sbt-avrohugger/overridesettings/project/plugins.sbt b/src/sbt-test/sbt-avrohugger/overridesettings/project/plugins.sbt index 99b49eb..1e8abea 100644 --- a/src/sbt-test/sbt-avrohugger/overridesettings/project/plugins.sbt +++ b/src/sbt-test/sbt-avrohugger/overridesettings/project/plugins.sbt @@ -1 +1 @@ -addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.1") \ No newline at end of file +addSbtPlugin("com.julianpeeters" % "sbt-avrohugger" % "2.8.2") \ No newline at end of file diff --git a/src/sbt-test/sbt-avrohugger/specific/project/build.properties b/src/sbt-test/sbt-avrohugger/specific/project/build.properties index e8a1e24..abbbce5 100644 --- a/src/sbt-test/sbt-avrohugger/specific/project/build.properties +++ b/src/sbt-test/sbt-avrohugger/specific/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.7 +sbt.version=1.9.8 diff --git a/src/sbt-test/sbt-avrohugger/standard/project/build.properties b/src/sbt-test/sbt-avrohugger/standard/project/build.properties index e8a1e24..abbbce5 100644 --- a/src/sbt-test/sbt-avrohugger/standard/project/build.properties +++ b/src/sbt-test/sbt-avrohugger/standard/project/build.properties @@ -1 +1 @@ -sbt.version=1.9.7 +sbt.version=1.9.8