Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to 3.0.0rc3 #683

Merged
merged 1 commit into from
Feb 13, 2025
Merged

Bump to 3.0.0rc3 #683

merged 1 commit into from
Feb 13, 2025

Conversation

forsyth2
Copy link
Collaborator

Bump to v3.0.0rc3.

@forsyth2 forsyth2 added the Update version Code specifically to update the version label Feb 13, 2025
@forsyth2 forsyth2 self-assigned this Feb 13, 2025
@forsyth2 forsyth2 merged commit 225950d into main Feb 13, 2025
5 checks passed
@forsyth2 forsyth2 deleted the v3.0.0rc3 branch February 13, 2025 00:25
@forsyth2
Copy link
Collaborator Author

Releasing zppy v3.0.0rc3

https://docs.e3sm.org/zppy/_build/html/main/dev_guide/release.html

Bumping the Version

cd ~/ez/zppy
git status
# Make sure there are no uncommitted changes.
git fetch upstream
git checkout -b v3.0.0rc3 upstream/main
tbump 3.0.0rc3 --no-tag
git push upstream v3.0.0rc3
# Create pull request: https://github.com/E3SM-Project/zppy/pull/683
# Merge

Releasing on GitHub: release candidates

git checkout main
git fetch upstream
git reset --hard upstream/main
git tag -a v3.0.0rc3 -m "v3.0.0rc3"
# Delete the branch from the tbump step. Otherwise, the push command won't work.
git branch -D v3.0.0rc3
git push upstream v3.0.0rc3
# Now on https://github.com/E3SM-Project/zppy/tags

Releasing on conda-forge: release candidates

cd ~/zppy-feedstock
curl -sL https://github.com/E3SM-Project/zppy/archive/v3.0.0rc3.tar.gz | openssl sha256
# SHA2-256(stdin)= ec3eea477b0f94aed9d3c397fcad8de4bf19bef04b276b212b8defa7c8e3c4c4
git fetch upstream dev
git checkout -b v3.0.0rc3 upstream/dev # You can name the branch anything you want
# In `recipe/meta.yaml`, update the version and sha256 (and the build number if needed):
{% set version = "3.0.0rc3" %} # Set to your version
sha256: ... # The sha256 from the previous step
number: 0 # build > number should always be 0
git add -A
git commit -m "v3.0.0rc3"
git push forsyth2 v3.0.0rc3
# Create pull request: https://github.com/conda-forge/zppy-feedstock/pull/20
# TODO: Merge
# TODO: check that rc3 appears on https://anaconda.org/conda-forge/zppy

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Update version Code specifically to update the version
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant