Skip to content

Commit d884078

Browse files
committed
tools/bump-version: Update for current version numbers
In principle it wouldn't be hard to generalize this logic further, reading out the current major and minor version numbers rather than expecting them to have certain values. But it's not obvious what direction we'd want such generalization to go in -- that depends on what our version-numbering practices would be after they change. On current plans, the versions will be 30.0.N+N indefinitely, so it's inherently uncertain what pattern we might choose (and therefore how the version should get bumped by this script) after we change those plans, if we someday do. So just leave the generalization to be done if and when we need it.
1 parent 913621b commit d884078

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/bump-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ EOF
1212

1313
shift && usage;
1414

15-
major_version=0
15+
major_version=30
1616
minor_version=0
1717
pub_version_regexp="${major_version}\.${minor_version}\.(\d+)\+\1"
1818

0 commit comments

Comments
 (0)