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

Prepare for v2.0.0 development. #30

Merged
merged 5 commits into from
Sep 27, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# xdmod-data Changelog

## Main development branch

## v1.0.1 (2024-09-27)

This release has bug fixes, performance improvements, and updates for compatibility, tests, and documentation.
Expand Down
4 changes: 3 additions & 1 deletion docs/developing.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,13 @@
1. Where it says `Describe this release`, paste in the contents of the release's section in `CHANGELOG.md`.
1. Where it says `Attach binaries`, attach the built distribution that was uploaded to PyPI.
1. Click `Publish release`.
1. Go to the [GitHub milestones](https://github.com/ubccr/xdmod-data/milestones) and close the milestone for the version.

## After release

1. Make a new branch of `xdmod-data` and:
1. Make sure the version number is updated in `xdmod_data/__version__.py` to a beta release of the next version, e.g., `1.0.1-beta.1`.
1. Make sure the version number is updated in `xdmod_data/__version__.py` to a pre-release of the next version, e.g., `1.0.1-01`.
1. Update `CHANGELOG.md` to add a section at the top called `Main development branch`.
1. Go to the [GitHub milestones](https://github.com/ubccr/xdmod-data/milestones) and add a milestone for the version.
1. Create a Pull Request for the new version.
1. Once the Pull Request is approved, merge it into `main`.
2 changes: 1 addition & 1 deletion xdmod_data/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__title__ = 'xdmod-data'
__version__ = '1.0.1'
__version__ = '2.0.0-01'
Loading