Skip to content

Commit

Permalink
docs: Fix dynamic versioning example (#32431)
Browse files Browse the repository at this point in the history
  • Loading branch information
Philippus committed May 23, 2024
1 parent 091fccd commit 824678a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion akka-actor/src/main/scala/akka/util/Version.scala
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ object Version {
*
* It has support for https://github.com/dwijnand/sbt-dynver format with `+` or
* `-` separator. The number of commits from the tag is handled as a numeric part.
* For example `1.0.0+3-73475dce26` is less than `1.0.10+10-ed316bd024` (3 < 10).
* For example `1.0.0+3-73475dce26` is less than `1.0.0+10-ed316bd024` (3 < 10).
*/
final class Version(val version: String) extends Comparable[Version] {
import Version.Undefined
Expand Down
2 changes: 1 addition & 1 deletion akka-cluster/src/main/resources/reference.conf
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ akka {
#
# It has support for https://github.com/dwijnand/sbt-dynver format with `+` or
# `-` separator. The number of commits from the tag is handled as a numeric part.
# For example `1.0.0+3-73475dce26` is less than `1.0.10+10-ed316bd024` (3 < 10).
# For example `1.0.0+3-73475dce26` is less than `1.0.0+10-ed316bd024` (3 < 10).
app-version = "0.0.0"

# Minimum required number of members before the leader changes member status
Expand Down

0 comments on commit 824678a

Please sign in to comment.