Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/ISSUE_TEMPLATE/minor-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ labels: "domain: releasing"
Note the preparation steps are now automated. You can run:

```shell
export NEW_VERSION=0.47.0 # replace this with the actual new version
export NEW_VERSION=<new Vector version> # replace this with the actual new version
export MINOR_VERSION=$(echo "$NEW_VERSION" | cut -d. -f2)
export PREP_BRANCH=prepare-v-0-"${MINOR_VERSION}"-"${NEW_VERSION}"-website
export RELEASE_BRANCH=v0."${MINOR_VERSION}"
export NEW_VRL_VERSION=0.42.0 # replace this with the actual new VRL version
export NEW_VRL_VERSION=<new VRL version> # replace this with the actual new VRL version
vdev release prepare --version "${NEW_VERSION_NUMBER}" --vrl-version NEW_VRL_VERSION
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
vdev release prepare --version "${NEW_VERSION_NUMBER}" --vrl-version NEW_VRL_VERSION
vdev release prepare --version "${NEW_VERSION}" --vrl-version NEW_VRL_VERSION

Did you mean this instead of NEW_VERSION_NUMBER?

```

# The week before the release
Expand Down
Loading