mirror of https://github.com/apache/cassandra
Increment version to 4.0-beta5
This commit is contained in:
parent
ea52f1d2fa
commit
200615ded5
|
|
@ -1,5 +1,7 @@
|
|||
4.0-beta4
|
||||
4.0-beta5
|
||||
* Fix DecimalDeserializer#toString OOM (CASSANDRA-14925)
|
||||
|
||||
4.0-beta4
|
||||
* DROP COMPACT STORAGE should invalidate prepared statements still using CompactTableMetadata (CASSANDRA-16361)
|
||||
* Update default num_tokens to 16 and allocate_tokens_for_local_replication_factor to 3 (CASSANDRA-13701)
|
||||
* Remove use of String.intern() (CASSANDRA-15810)
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
<property name="debuglevel" value="source,lines,vars"/>
|
||||
|
||||
<!-- default version and SCM information -->
|
||||
<property name="base.version" value="4.0-beta4"/>
|
||||
<property name="base.version" value="4.0-beta5"/>
|
||||
<property name="scm.connection" value="scm:https://gitbox.apache.org/repos/asf/cassandra.git"/>
|
||||
<property name="scm.developerConnection" value="scm:https://gitbox.apache.org/repos/asf/cassandra.git"/>
|
||||
<property name="scm.url" value="https://gitbox.apache.org/repos/asf?p=cassandra.git;a=tree"/>
|
||||
|
|
|
|||
|
|
@ -1,3 +1,9 @@
|
|||
cassandra (4.0~beta5) UNRELEASED; urgency=medium
|
||||
|
||||
* New release
|
||||
|
||||
-- Mick Semb Wever <mck@apache.org> Fri, 18 Dec 2020 18:32:45 +0100
|
||||
|
||||
cassandra (4.0~beta4) unstable; urgency=medium
|
||||
|
||||
* New release
|
||||
|
|
|
|||
|
|
@ -188,7 +188,7 @@ Update the codebase to point to the next development version::
|
|||
git checkout cassandra-<version-branch>
|
||||
edit build.xml # update `<property name="base.version" value="…"/> `
|
||||
edit debian/changelog # add entry for new version
|
||||
edit CHANGES.txt # add entry for new version
|
||||
edit CHANGES.txt # add entry for new version, move up any entries that were added after the release was cut and staged
|
||||
git commit -m "Increment version to <next-version>" build.xml debian/changelog CHANGES.txt
|
||||
|
||||
# …and forward merge and push per normal procedure
|
||||
|
|
@ -245,7 +245,4 @@ As described in `When to Archive <http://www.apache.org/dev/release.html#when-to
|
|||
|
||||
An example of removing old releases::
|
||||
|
||||
svn co https://dist.apache.org/repos/dist/release/cassandra/ cassandra-dist
|
||||
svn rm <previous_version> debian/pool/main/c/cassandra/<previous_version>*
|
||||
svn st
|
||||
# check and commit
|
||||
svn rm https://dist.apache.org/repos/dist/release/cassandra/<previous_version>
|
||||
Loading…
Reference in New Issue