Skip to content

Commit 83a5b3a

Browse files
CNDB-13342: Add 4th component to the version (#1642)
The 4th component can be used to distinguish version which introduce breaking changes, especially we want to retain the appropriate version ordering.
1 parent 4948d69 commit 83a5b3a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<property name="debuglevel" value="source,lines,vars"/>
3434

3535
<!-- default version and SCM information -->
36-
<property name="base.version" value="4.0.11"/>
36+
<property name="base.version" value="4.0.11.0"/>
3737
<property name="scm.connection" value="scm:git:ssh://[email protected]:datastax/cassandra.git"/>
3838
<property name="scm.developerConnection" value="scm:git:ssh://[email protected]:datastax/cassandra.git"/>
3939
<property name="scm.url" value="scm:git:ssh://[email protected]:datastax/cassandra.git"/>

src/java/org/apache/cassandra/gms/Gossiper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ else if (version.compareTo(minVersion) < 0)
253253
minVersion = version;
254254
}
255255

256-
// remember the minumum version for the expiration duration
256+
// remember the minimum version for the expiration duration
257257
if (minVersion.compareTo(SystemKeyspace.CURRENT_VERSION) < 0)
258258
return new ExpiringMemoizingSupplier.Memoized<>(minVersion);
259259

0 commit comments

Comments
 (0)