Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Commit

Permalink
Prepare for 1.2.1 update (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
gmcelhoe authored Jan 25, 2024
1 parent c808ce1 commit e6986f9
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ It's easy to get started adding operations to your Java project. Just add to yo
<dependency>
<groupId>com.vmware.test-operations</groupId>
<artifactId>test-operations</artifactId>
<version>1.1.0</version>
<version>1.2.1</version>
<scope>test</scope>
</dependency>
```
Expand Down
11 changes: 6 additions & 5 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ Ensure that `git status` is clean, no extra files or diffs.
This will create a pull request with the non-SNAPSHOT build. Replace with the correct version number.

```
git switch -c release-1.2.0
mvn versions:set -DnewVersion=1.2.0
git switch -c release-1.2.1
mvn versions:set -DnewVersion=1.2.1
git add -u
git commit
git push
Expand All @@ -83,7 +83,8 @@ Your deployed items should be found there.

You will want to find the staging repository with the javadoc, jar, and pom content. You should "Drop" the unneeded repositories.

Also, if the repository has a folder for "test-operations-parent", you can delete that from the repository.
The full repository will have folders for test-operations, test-utilities, and test-operations-parent.


"Close" the repository you want to promote. This locks it, preventing further changes. It also runs a series of sanity checks.

Expand All @@ -110,8 +111,8 @@ You can create a new tag at the time of making the release.
This puts the repository in a mode ready for more development and pull requests.

```
git switch -c release-1.2.1-SNAPSHOT
mvn versions:set -DnewVersion=1.2.1-SNAPSHOT
git switch -c release-1.2.2-SNAPSHOT
mvn versions:set -DnewVersion=1.2.2-SNAPSHOT
git add -u
git commit
git push
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.vmware.test-operations</groupId>
<artifactId>test-operations-parent</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.2.1</version>

<packaging>pom</packaging>

Expand Down
2 changes: 1 addition & 1 deletion test-operations/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.vmware.test-operations</groupId>
<artifactId>test-operations-parent</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.2.1</version>
</parent>
<artifactId>test-operations</artifactId>
<!--
Expand Down
2 changes: 1 addition & 1 deletion test-utilities/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.vmware.test-operations</groupId>
<artifactId>test-operations-parent</artifactId>
<version>1.2.1-SNAPSHOT</version>
<version>1.2.1</version>
</parent>
<artifactId>test-utilities</artifactId>

Expand Down

0 comments on commit e6986f9

Please sign in to comment.