Skip to content

Commit 07ad2b6

Browse files
committed
fix: Replace dev0 with SNAPSHOT
1 parent 8517061 commit 07ad2b6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/post-release-version-bump.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
9797
- name: Update version to next development version in main
9898
run: |
99-
DEV_VERSION="${{ github.event.inputs.version }}.dev0"
99+
DEV_VERSION="${{ github.event.inputs.version }}.SNAPSHOT"
100100
sed -i'' -e "s/val adotVersion = \".*\"/val adotVersion = \"${DEV_VERSION}\"/" version.gradle.kts
101101
VERSION="${{ github.event.inputs.version }}"
102102
sed -i'' -e 's/adot-autoinstrumentation-java:v2.*"/adot-autoinstrumentation-java:v'$VERSION'"/' .github/workflows/daily-scan.yml
@@ -109,7 +109,7 @@ jobs:
109109
env:
110110
GITHUB_TOKEN: ${{ env.BOT_TOKEN_GITHUB_RW_PATOKEN }}
111111
run: |
112-
DEV_VERSION="${{ github.event.inputs.version }}.dev0"
112+
DEV_VERSION="${{ github.event.inputs.version }}.SNAPSHOT"
113113
gh pr create --title "Post release $VERSION: Update version to $DEV_VERSION" \
114114
--body "This PR prepares the main branch for the next development cycle by updating the version to $DEV_VERSION and updating the image version to be scanned to the latest released.
115115

version.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* permissions and limitations under the License.
1414
*/
1515

16-
val adotVersion = "2.18.0-dev0"
16+
val adotVersion = "2.18.0-SNAPSHOT"
1717

1818
allprojects {
1919
version = if (project.hasProperty("release.version")) {

0 commit comments

Comments
 (0)