Skip to content

Commit 99647f7

Browse files
committed
[bugfix] Bump additional version numbers
1 parent c306c61 commit 99647f7

File tree

10 files changed

+25
-22
lines changed

10 files changed

+25
-22
lines changed

.idea/runConfigurations/Java_Admin_Client.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/Jetty_Server.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/Local_Jetty_Server.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

VERSIONING_AND_RELEASING.md

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,12 @@ For pre-releases, such as [release candidates](https://en.wikipedia.org/wiki/Sof
4141

4242
* Given two versions in which `MAJOR`, `MINOR`, and `PATCH` are equal, the version with a `PRERELEASE` has lower precedence than one without it. The following rules hold true in terms of version number preference:
4343

44-
* `3.0.0` > `3.0.0-RC2`
45-
* `3.0.0-RC2` > `3.0.0-RC1`
46-
* `3.0.0-RC1` > `2.2.4`
44+
* `8.0.0` > `8.0.0-SNAPSHOT`
45+
* `8.0.0` > `8.0.0-RC2`
46+
* `8.0.0-RC2` > `8.0.0-RC1`
47+
* `8.0.0-RC1` > `7.1.0`
48+
* `8.0.0-SNAPSHOT` > `7.1.0`
49+
* `7.2.0-SNAPSHOT` > `7.1.0`
4750

4851
We use only two clearly defined forms of `PRERELEASE` label:
4952

@@ -87,7 +90,7 @@ This section details concrete steps for creating and publishing product releases
8790

8891
### Preparing a Product Release
8992

90-
Once development on a new stable version is complete, the following steps will prepare the version for release. For purposes of illustration, we will assume we are preparing the stable release of version 6.4.0.
93+
Once development on a new stable version is complete, the following steps will prepare the version for release. For purposes of illustration, we will assume we are preparing the stable release of version 6.5.0.
9194
You will require a system with:
9295
* macOS
9396
* JDK 8
@@ -166,7 +169,7 @@ You will require a system with:
166169
</activeProfiles>
167170
```
168171

169-
3. Merge any outstanding PRs that have been reviewed and accepted for the milestone elemental-6.4.0.
172+
3. Merge any outstanding PRs that have been reviewed and accepted for the milestone (e.g. `elemental-6.5.0`).
170173

171174
4. Make sure that you have the HEAD of `origin/main` (or `upstream` if you are on a fork).
172175

@@ -184,9 +187,9 @@ You will require a system with:
184187
[INFO] Executing: /bin/sh -c cd /Users/aretter/code/evolvedbinary/elemental.maven && git status
185188
[INFO] Working directory: /Users/aretter/code/evolvedbinary/elemental.maven
186189
[INFO] Checking dependencies and plugins for snapshots ...
187-
What is the release version for "Elemental"? (xyz.elemental:elemental) 6.4.0: :
188-
What is SCM release tag or label for "Elemental"? (xyz.elemental:elemental) elemental-6.4.0: :
189-
What is the new development version for "Elemental"? (xyz.elemental:elemental) 6.5.0-SNAPSHOT: :
190+
What is the release version for "Elemental"? (xyz.elemental:elemental) 6.5.0: :
191+
What is SCM release tag or label for "Elemental"? (xyz.elemental:elemental) elemental-6.5.0: :
192+
What is the new development version for "Elemental"? (xyz.elemental:elemental) 6.6.0-SNAPSHOT: :
190193
```
191194

192195
6. Once the prepare process completes you can perform the release. This will upload Maven Artifacts to Maven
@@ -196,8 +199,8 @@ Central (staging), Docker images to Docker Hub, and Elemental distributions and
196199
```
197200

198201
7. Update the stable branch (`gold`) of Elemental to reflect the latest release:
199-
```
200-
$ git push origin elemental-6.4.0:gold
202+
```bash
203+
$ git push origin elemental-6.5.0:gold
201204
```
202205

203206
#### Publishing/Promoting the Product Release
@@ -211,7 +214,7 @@ Central (staging), Docker images to Docker Hub, and Elemental distributions and
211214

212215
5. Visit the GitHub releases page [https://github.com/evolvedbinary/elemental/releases](https://github.com/evolvedbinary/elemental/releases) and create a new release, enter the tag you previously created and link the release notes from the blog.
213216

214-
6. Send an email to the `Elemental` mailing list announcing the release with a title similar to `[ANN] Release of Elemental 8.0.0`, copy and paste the release notes from the blog into the email and reformat appropriately (see past emails).
217+
6. Send an email to the `Elemental` mailing list announcing the release with a title similar to `[ANN] Release of Elemental 6.5.0`, copy and paste the release notes from the blog into the email and reformat appropriately (see past emails).
215218

216219
7. Tweet about it using the `elemental` Twitter account.
217220

exist-core-jcstress/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
<parent>
5353
<groupId>xyz.elemental.fork.org.exist-db</groupId>
5454
<artifactId>exist-parent</artifactId>
55-
<version>6.4.0-SNAPSHOT</version>
55+
<version>6.5.0-SNAPSHOT</version>
5656
<relativePath>../exist-parent</relativePath>
5757
</parent>
5858

exist-core-jmh/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
<parent>
5353
<groupId>xyz.elemental.fork.org.exist-db</groupId>
5454
<artifactId>exist-parent</artifactId>
55-
<version>6.4.0-SNAPSHOT</version>
55+
<version>6.5.0-SNAPSHOT</version>
5656
<relativePath>../exist-parent</relativePath>
5757
</parent>
5858

extensions/debuggee/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
<parent>
5454
<groupId>xyz.elemental.fork.org.exist-db</groupId>
5555
<artifactId>exist-extensions</artifactId>
56-
<version>6.4.0-SNAPSHOT</version>
56+
<version>6.5.0-SNAPSHOT</version>
5757
<relativePath>..</relativePath>
5858
</parent>
5959

extensions/images/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
<parent>
5454
<groupId>xyz.elemental.fork.org.exist-db</groupId>
5555
<artifactId>exist-extensions</artifactId>
56-
<version>6.4.0-SNAPSHOT</version>
56+
<version>6.5.0-SNAPSHOT</version>
5757
<relativePath>..</relativePath>
5858
</parent>
5959

extensions/modules/expathrepo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ To build the .xar file and copy it for use in the tests for this module:
88
```bash
99
cd expathrepo-trigger-test
1010
mvn clean package
11-
cp target/exist-expathrepo-trigger-test-6.4.0-SNAPSHOT.xar ../src/test/resources/exist-expathrepo-trigger-test.xar
11+
cp target/exist-expathrepo-trigger-test-6.5.0-SNAPSHOT.xar ../src/test/resources/exist-expathrepo-trigger-test.xar
1212
```
1313

1414
Each time you modify the source code of the `expathrepo-trigger-test` module, you should rebuild it and copy the .xar file to the `src/test/resources` folder of this module and re-commit it to Git.

extensions/modules/sql-oracle/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
<parent>
5353
<groupId>xyz.elemental.fork.org.exist-db</groupId>
5454
<artifactId>exist-modules</artifactId>
55-
<version>6.4.0-SNAPSHOT</version>
55+
<version>6.5.0-SNAPSHOT</version>
5656
<relativePath>..</relativePath>
5757
</parent>
5858

0 commit comments

Comments
 (0)