Skip to content

Commit

Permalink
Merge pull request #770 from VincentRouvreau/3.7.0rc1
Browse files Browse the repository at this point in the history
3.7.0rc1
  • Loading branch information
VincentRouvreau authored Dec 15, 2022
2 parents ace802e + 0fa2185 commit f01ef5d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .github/for_maintainers/new_gudhi_version_creation.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ cmake -DCMAKE_BUILD_TYPE=Release -DCGAL_DIR=/your/path/to/CGAL -DWITH_GUDHI_EXAM
make user_version
date +"%d-%m-%Y-%T" > gudhi.@GUDHI_VERSION@/timestamp.txt
tar -czvf gudhi.@[email protected] gudhi.@GUDHI_VERSION@
md5sum gudhi.@[email protected] > md5sum.txt
sha256sum gudhi.@[email protected] > sha256sum.txt
sha512sum gudhi.@[email protected] > sha512sum.txt

Expand Down Expand Up @@ -87,7 +86,7 @@ Copy gudhi WebDAV python/@GUDHI_VERSION@ as python/latest (no symbolic link with
* Name the tag: tags/gudhi-release-@GUDHI_VERSION@
* Name the release GUDHI @GUDHI_VERSION@ release
* Write the release note
* Drag'n drop *gudhi.@[email protected]*, *md5sum.txt*, *sha256sum.txt*, *sha512sum.txt* files
* Drag'n drop *gudhi.@[email protected]*, *sha256sum.txt*, *sha512sum.txt* files
* Tick the *This is a pre-release* check button if this is a release candidate (untick if this is an official version)
* Click the *Publish the release* button

Expand Down
14 changes: 10 additions & 4 deletions .github/next_release.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,16 @@ We are now using GitHub to develop the GUDHI library, do not hesitate to [fork t

Below is a list of changes made since GUDHI 3.6.0:

- [Module](link)
- ...

- [Simplex tree](https://gudhi.inria.fr/python/latest/simplex_tree_ref.html)
- New functions to initialize from a matrix or insert batches of simplices of the same dimension.

- [Rips complex](https://gudhi.inria.fr/python/latest/rips_complex_user.html)
- Construction now rejects positional arguments, you need to specify `points=X`.

- Installation
- c++17 is the new minimal standard to compile the library. This implies Visual Studio minimal version is now 2017.
- C++17 is the new minimal standard to compile the library. This implies Visual Studio minimal version is now 2017.
- OSx ARM pip package is now available thanks to a universal wheel
- Python 3.11 pip package

- Miscellaneous
- The [list of bugs that were solved since GUDHI-3.6.0](https://github.com/GUDHI/gudhi-devel/issues?q=label%3A3.7.0+is%3Aclosed) is available on GitHub.
Expand All @@ -32,3 +31,10 @@ Feel free to [contact us](https://gudhi.inria.fr/contact/) in case you have any

For further information about downloading and installing the library ([C++](https://gudhi.inria.fr/doc/latest/installation.html) or [Python](https://gudhi.inria.fr/python/latest/installation.html)), please visit the [GUDHI web site](https://gudhi.inria.fr/).

## Contributors

- @albert-github
- @hschreiber
- @mglisse
- @VincentRouvreau
- @wreise
2 changes: 1 addition & 1 deletion CMakeGUDHIVersion.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set (GUDHI_MAJOR_VERSION 3)
set (GUDHI_MINOR_VERSION 7)
# 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 0a0)
set (GUDHI_PATCH_VERSION 0rc1)
set(GUDHI_VERSION ${GUDHI_MAJOR_VERSION}.${GUDHI_MINOR_VERSION}.${GUDHI_PATCH_VERSION})

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

0 comments on commit f01ef5d

Please sign in to comment.