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 version 0.7.0dev #502

Merged
merged 5 commits into from
Aug 14, 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: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "poetry.core.masonry.api"
# Check https://python-poetry.org/docs/pyproject/ for all available sections
name = "ansys-dpf-composites"
# Switch to released version of dpf core releasing pydpf-composites!
version = "0.6.dev0"
version = "0.7.dev0"
description = "Post-processing of composite structures based on Ansys DPF"
license = "MIT"
authors = ["ANSYS, Inc. <[email protected]>"]
Expand Down
6 changes: 5 additions & 1 deletion release_checklist.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
* Check the release_checklist in the dpf_composites repo
* Check the README_release_new_version in the dpf_composites repo

* As soon as the docker image with the version tag is available, add explicit tests for the new version. This should happen when a release branch is created for normal releases and
once the image is tagged manually for pre-releases.
* Add docker pull for the container with the new version tag in ci_cd.yml
* Add pytest run for the new version in tox.ini
* Update the compatibility in the docs: intro.rst / Compatibility
* Update the version of THIS package in the pyproject.toml file
* Update the version check in test_metadata.py
* Revert to released version of dpf core in the pyproject.toml file
* Update lock file: poetry lock
* Follow this guide (https://dev.docs.pyansys.com/how-to/releasing.html) to create a release branch and release. Also bump version in test_metadata.py test.
* on the main branch, bump the version in the pyproject.toml file to the next dev version and commit
2 changes: 1 addition & 1 deletion tests/test_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@


def test_pkg_version():
assert __version__ == "0.6.dev0"
assert __version__ == "0.7.dev0"
Loading