From f0c55b3444bc4fc82af10f0c89693e4401691b6d Mon Sep 17 00:00:00 2001 From: Vincent Rouvreau Date: Thu, 15 Dec 2022 22:19:57 +0100 Subject: remove md5 as not really robust to collisions --- .github/for_maintainers/new_gudhi_version_creation.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/for_maintainers/new_gudhi_version_creation.md b/.github/for_maintainers/new_gudhi_version_creation.md index 19ef168e..9634adae 100644 --- a/.github/for_maintainers/new_gudhi_version_creation.md +++ b/.github/for_maintainers/new_gudhi_version_creation.md @@ -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.@GUDHI_VERSION@.tar.gz gudhi.@GUDHI_VERSION@ -md5sum gudhi.@GUDHI_VERSION@.tar.gz > md5sum.txt sha256sum gudhi.@GUDHI_VERSION@.tar.gz > sha256sum.txt sha512sum gudhi.@GUDHI_VERSION@.tar.gz > sha512sum.txt @@ -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.@GUDHI_VERSION@.tar.gz*, *md5sum.txt*, *sha256sum.txt*, *sha512sum.txt* files +* Drag'n drop *gudhi.@GUDHI_VERSION@.tar.gz*, *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 -- cgit v1.2.3 From 5b55fbd1aca28c9494212f9ab10b4cbbb1a0d719 Mon Sep 17 00:00:00 2001 From: Vincent Rouvreau Date: Thu, 15 Dec 2022 22:20:24 +0100 Subject: Some more content for the release --- .github/next_release.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/next_release.md b/.github/next_release.md index 929a7ce6..61234ff7 100644 --- a/.github/next_release.md +++ b/.github/next_release.md @@ -6,9 +6,6 @@ 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. @@ -16,7 +13,9 @@ Below is a list of changes made since GUDHI 3.6.0: - 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. @@ -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 -- cgit v1.2.3 From 0fa2185868cd623bd8b3407723df85653b3190d1 Mon Sep 17 00:00:00 2001 From: Vincent Rouvreau Date: Thu, 15 Dec 2022 22:21:24 +0100 Subject: 3.7.0rc1 --- CMakeGUDHIVersion.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeGUDHIVersion.txt b/CMakeGUDHIVersion.txt index 1dab47ab..737708aa 100644 --- a/CMakeGUDHIVersion.txt +++ b/CMakeGUDHIVersion.txt @@ -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}") -- cgit v1.2.3