Skip to content

Commit 0e59e57

Browse files
Merge pull request #1098 from VincentRouvreau/release_3_10_1rc1
Next release 3.10.1
2 parents 5b47af0 + 99a082a commit 0e59e57

File tree

5 files changed

+27
-21
lines changed

5 files changed

+27
-21
lines changed

.github/changelog.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
Release History
22
===============
33

4+
[Release 3.10.1](https://github.com/GUDHI/gudhi-devel/releases/tag/tags%2Fgudhi-release-3.10.1)
5+
-----------
6+
7+
Release date: June 2024
8+
9+
Below is a list of changes made since GUDHI 3.10.1:
10+
11+
Only bug fixes have been implemented for this minor version.
12+
13+
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.
14+
415
[Release 3.10.0](https://github.com/GUDHI/gudhi-devel/releases/tag/tags%2Fgudhi-release-3.10.0)
516
-----------
617

.github/for_maintainers/new_gudhi_version_creation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ nor [unlabelled closed PRs](https://github.com/GUDHI/gudhi-devel/pulls?q=is%3Apr
2525
**Edit the file CMakeGUDHIVersion.txt**, and increment major, minor, or patch version number, in function of the version new delivery.
2626
```bash
2727
# cf. .gitignore - ignore this if it is a fresh clone version
28-
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__
28+
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
2929
```
3030

3131
Checkin the modifications, build and test the version:

.github/for_maintainers/switcher.json

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
[
22
{
3-
"name": "v3.10.0 (latest)",
4-
"version": "3.10.0",
3+
"name": "v3.10.1 (latest)",
4+
"version": "3.10.1",
55
"url": "https://gudhi.inria.fr/python/latest/"
66
},
7+
{
8+
"name": "v3.10.0",
9+
"version": "3.10.0",
10+
"url": "https://gudhi.inria.fr/python/3.10.0/"
11+
},
712
{
813
"name": "v3.9.0",
914
"version": "3.9.0",

.github/next_release.md

+6-16
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,8 @@
1-
We are pleased to announce the release 3.11.0 of the GUDHI library.
1+
We are pleased to announce the release 3.10.1 of the GUDHI library.
22

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

5-
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).
6-
7-
Below is a list of changes:
8-
9-
- [Module](link)
10-
- **...**
11-
12-
- [Module](link)
13-
- **...**
14-
15-
- Miscellaneous
16-
- 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.
5+
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.
176

187
All modules are distributed under the terms of the MIT license.
198
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.
@@ -28,5 +17,6 @@ For further information about downloading and installing the library ([C++](http
2817

2918
## Contributors
3019

31-
- **...**
32-
- **...**
20+
- @hschreiber
21+
- @mglisse
22+
- @VincentRouvreau

CMakeGUDHIVersion.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Must be conform to pep440 - https://www.python.org/dev/peps/pep-0440/#pre-releases
22
set (GUDHI_MAJOR_VERSION 3)
3-
set (GUDHI_MINOR_VERSION 11)
3+
set (GUDHI_MINOR_VERSION 10)
44
# GUDHI_PATCH_VERSION can be 'ZaN' for Alpha release, 'ZbN' for Beta release, 'ZrcN' for release candidate or 'Z' for a final release.
5-
set (GUDHI_PATCH_VERSION 0a1)
5+
set (GUDHI_PATCH_VERSION 1)
66
set(GUDHI_VERSION ${GUDHI_MAJOR_VERSION}.${GUDHI_MINOR_VERSION}.${GUDHI_PATCH_VERSION})
77

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

0 commit comments

Comments
 (0)