Skip to content

Commit 66a3338

Browse files
committed
Post 3.1.0 release cleanup
1 parent 946e607 commit 66a3338

File tree

3 files changed

+15
-14
lines changed

3 files changed

+15
-14
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,11 +132,11 @@ See [CounterSpec](safe-persistence/src/test/scala/com/evolutiongaming/safeakka/p
132132
```scala
133133
addSbtPlugin("com.evolution" % "sbt-artifactory-plugin" % "0.0.2")
134134

135-
libraryDependencies += "com.evolutiongaming" %% "safe-actor" % "3.0.0"
135+
libraryDependencies += "com.evolutiongaming" %% "safe-actor" % "3.1.0"
136136

137-
libraryDependencies += "com.evolutiongaming" %% "safe-persistence" % "3.0.0"
137+
libraryDependencies += "com.evolutiongaming" %% "safe-persistence" % "3.1.0"
138138

139-
libraryDependencies += "com.evolutiongaming" %% "safe-persistence-async" % "3.0.0"
139+
libraryDependencies += "com.evolutiongaming" %% "safe-persistence-async" % "3.1.0"
140140

141-
libraryDependencies += "com.evolutiongaming" %% "safe-persistence-testkit" % "3.0.0"
141+
libraryDependencies += "com.evolutiongaming" %% "safe-persistence-testkit" % "3.1.0"
142142
```

build.sbt

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,22 @@ import Dependencies.*
44
// but it may not be source compatible (ie, it will be a minor release).
55
ThisBuild / versionPolicyIntention := Compatibility.BinaryCompatible
66

7-
//TODO: after 3.1.0 release - clear up versionPolicyIgnored section
87
/*
9-
versionPolicyReportDependencyIssues ignored dependencies when compared to safe-akka 3.0.0.
8+
versionPolicyReportDependencyIssues ignored dependencies when compared to safe-akka 3.1.0.
109
All of those should not affect the library users, binary compatibility should be preserved.
10+
11+
Remember to clear up after 3.1.1 release!
1112
*/
1213
ThisBuild / versionPolicyIgnored ++= Seq(
13-
//com.evolutiongaming:executor-tools_2.13: missing dependency
14-
"com.evolutiongaming" %% "executor-tools",
15-
//com.google.protobuf:protobuf-java: missing dependency
16-
"com.google.protobuf" % "protobuf-java",
14+
/*
15+
Examples:
16+
17+
//com.chuusai:shapeless_2.13: missing dependency
18+
"com.chuusai" %% "shapeless",
1719
//org.scala-lang.modules:scala-java8-compat_2.13:
18-
// incompatible version change from 0.9.0 to 1.0.0 (compatibility: early semantic versioning
20+
// incompatible version change from 0.9.0 to 1.0.0 (compatibility: early semantic versioning)
1921
"org.scala-lang.modules" %% "scala-java8-compat",
20-
//org.typelevel:cats-macros_2.13: missing dependency
21-
"org.typelevel" %% "cats-macros",
22+
*/
2223
)
2324

2425
lazy val commonSettings = Seq(

version.sbt

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

0 commit comments

Comments
 (0)