Skip to content

Commit

Permalink
Merge pull request #1098 from VincentRouvreau/release_3_10_1rc1
Browse files Browse the repository at this point in the history
Next release 3.10.1
  • Loading branch information
VincentRouvreau authored Jul 2, 2024
2 parents 5b47af0 + 99a082a commit 0e59e57
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 21 deletions.
11 changes: 11 additions & 0 deletions .github/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
Release History
===============

[Release 3.10.1](https://github.com/GUDHI/gudhi-devel/releases/tag/tags%2Fgudhi-release-3.10.1)
-----------

Release date: June 2024

Below is a list of changes made since GUDHI 3.10.1:

Only bug fixes have been implemented for this minor version.

The [list of bugs that were solved](https://github.com/GUDHI/gudhi-devel/issues?q=label%3A3.10.1+is%3Aclosed) is available on GitHub.

[Release 3.10.0](https://github.com/GUDHI/gudhi-devel/releases/tag/tags%2Fgudhi-release-3.10.0)
-----------

Expand Down
2 changes: 1 addition & 1 deletion .github/for_maintainers/new_gudhi_version_creation.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ nor [unlabelled closed PRs](https://github.com/GUDHI/gudhi-devel/pulls?q=is%3Apr
**Edit the file CMakeGUDHIVersion.txt**, and increment major, minor, or patch version number, in function of the version new delivery.
```bash
# cf. .gitignore - ignore this if it is a fresh clone version
rm -rf data/points/COIL_database/lucky_cat.off_dist data/points/COIL_database/lucky_cat.off_sc.dot data/points/KleinBottle5D.off_dist data/points/KleinBottle5D.off_sc.dot data/points/human.off_dist data/points/human.off_sc.off data/points/human.off_sc.txt src/python/test/__pycache__
rm -rf data/points/COIL_database/lucky_cat.off_dist data/points/COIL_database/lucky_cat.off_sc.dot data/points/KleinBottle5D.off_dist data/points/KleinBottle5D.off_sc.dot data/points/human.off_dist data/points/human.off_sc.off data/points/human.off_sc.txt src/python/test/__pycache__ src/python/gudhi/*.cpp
```

Checkin the modifications, build and test the version:
Expand Down
9 changes: 7 additions & 2 deletions .github/for_maintainers/switcher.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
[
{
"name": "v3.10.0 (latest)",
"version": "3.10.0",
"name": "v3.10.1 (latest)",
"version": "3.10.1",
"url": "https://gudhi.inria.fr/python/latest/"
},
{
"name": "v3.10.0",
"version": "3.10.0",
"url": "https://gudhi.inria.fr/python/3.10.0/"
},
{
"name": "v3.9.0",
"version": "3.9.0",
Expand Down
22 changes: 6 additions & 16 deletions .github/next_release.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,8 @@
We are pleased to announce the release 3.11.0 of the GUDHI library.
We are pleased to announce the release 3.10.1 of the GUDHI library.

As a major new feature, the GUDHI library now offers **...**
Only bug fixes have been implemented for this minor version.

We are now using GitHub to develop the GUDHI library, do not hesitate to [fork the GUDHI project on GitHub](https://github.com/GUDHI/gudhi-devel). From a user point of view, we recommend to download GUDHI user version (gudhi.3.X.X.tar.gz).

Below is a list of changes:

- [Module](link)
- **...**

- [Module](link)
- **...**

- Miscellaneous
- The [list of bugs that were solved](https://github.com/GUDHI/gudhi-devel/issues?q=label%3A3.1.1+is%3Aclosed) is available on GitHub.
The [list of bugs that were solved](https://github.com/GUDHI/gudhi-devel/issues?q=label%3A3.10.1+is%3Aclosed) is available on GitHub.

All modules are distributed under the terms of the MIT license.
However, there are still GPL dependencies for many modules. We invite you to check our [license dedicated web page](https://gudhi.inria.fr/licensing/) for further details.
Expand All @@ -28,5 +17,6 @@ For further information about downloading and installing the library ([C++](http

## Contributors

- **...**
- **...**
- @hschreiber
- @mglisse
- @VincentRouvreau
4 changes: 2 additions & 2 deletions CMakeGUDHIVersion.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Must be conform to pep440 - https://www.python.org/dev/peps/pep-0440/#pre-releases
set (GUDHI_MAJOR_VERSION 3)
set (GUDHI_MINOR_VERSION 11)
set (GUDHI_MINOR_VERSION 10)
# GUDHI_PATCH_VERSION can be 'ZaN' for Alpha release, 'ZbN' for Beta release, 'ZrcN' for release candidate or 'Z' for a final release.
set (GUDHI_PATCH_VERSION 0a1)
set (GUDHI_PATCH_VERSION 1)
set(GUDHI_VERSION ${GUDHI_MAJOR_VERSION}.${GUDHI_MINOR_VERSION}.${GUDHI_PATCH_VERSION})

message(STATUS "GUDHI version : ${GUDHI_VERSION}")

0 comments on commit 0e59e57

Please sign in to comment.