Conversation
Collaborator
Author
zstash rc3Release process notes: Step 1: testingcd ~/ez/zstash
git status
# Check for uncommitted changes
git fetch upstream
git checkout main
git reset --hard upstream/main
git log
# Last commit: Improve tests (#393)
# Good, matches https://github.com/E3SM-Project/zstash/commits/main/
# Good, hashes match
nersc_conda # Activate conda
conda clean --all --y
conda env create -f conda/dev.yml -n zstash_dev_20251017_eod
conda activate zstash_dev_20251017_eod
pre-commit run --all-files
python -m pip install .Testing was completed as part of #393 Step 2: Bump versionsStep 2a: Confluence
Step 2b: zstash repogit fetch upstream main
git checkout -b v1.5.0rc3 upstream/main
tbump 1.5.0rc3 --no-tag
# Makes the commit, but doesn't push because our branch name isn't `main`
# Strangely, it doesn't give a warning about that this time.
git grep -n "1\.5\.0rc3" | cat
# setup.py:5: version="1.5.0rc3",
# tbump.toml:5:current = "1.5.0rc3"
# zstash/__init__.py:1:__version__ = "v1.5.0rc3"
#
# setup.py:5: version="1.4.4",
# tbump.toml:5:current = "1.4.4"
# zstash/__init__.py:1:__version__ = "v1.4.4"
#
# Yes, these match up with changes in https://github.com/E3SM-Project/zstash/pull/359
git push upstream v1.5.0rc3
# Follow example of https://github.com/E3SM-Project/zstash/pull/392
# Create, add "Update version" label" to, and merge https://github.com/E3SM-Project/zstash/pull/394
git fetch upstream
git checkout main
git reset --hard upstream/main
git tag -a v1.5.0rc3 -m "v1.5.0rc3"
git branch -D v1.5.0rc3
git push upstream v1.5.0rc3
Step 2c: zstash-feedstock repocd /global/homes/f/forsyth/zstash-feedstock
curl -sL https://github.com/E3SM-Project/zstash/archive/v1.5.0rc3.tar.gz | openssl sha256
# SHA2-256(stdin)= 5f039b176f6c5a63b42b6ce330bcb7291ce3753713218bfa40edaf9a2320ef1d
git status
# Check for uncommitted changes
git fetch upstream dev
git checkout -b v1.5.0rc3 upstream/dev
emacs recipe/meta.yaml
# In `recipe/meta.yaml`, update the version and sha256 (and the build number if needed):
# {% set version = "1.5.0rc3" %}
# sha256: ... # The sha256 from the previous step
# number: 0 # build >>> number should always be 0
#
git add -A
git commit -m "v1.5.0rc3"
git push forsyth2 v1.5.0rc3
# Follow example of https://github.com/conda-forge/zstash-feedstock/pull/17Created conda-forge/zstash-feedstock#18 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Objectives:
Select one: This pull request is...
Small Change