summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Rouvreau <10407034+VincentRouvreau@users.noreply.github.com>2022-01-13 08:04:15 +0100
committerGitHub <noreply@github.com>2022-01-13 08:04:15 +0100
commit17c3c6a07cdb1b4d4f735f3bc996af30e216dfbe (patch)
tree5e497a5f21eb5e6ac0ad4a1e530b52929d554c12
parentc8a02b48f3d3e5c5c74859be7dd2c347f2dabcbd (diff)
parentc4aa381396007780f0f9bc4580c9e7ec5b0c88a0 (diff)
Merge pull request #569 from VincentRouvreau/release_3_5_0tags/gudhi-release-3.5.0
Updates for release 3.5.0
-rw-r--r--.github/for_maintainers/new_gudhi_version_creation.md4
-rw-r--r--.github/next_release.md4
-rw-r--r--CMakeGUDHIVersion.txt2
3 files changed, 5 insertions, 5 deletions
diff --git a/.github/for_maintainers/new_gudhi_version_creation.md b/.github/for_maintainers/new_gudhi_version_creation.md
index 812758e3..19ef168e 100644
--- a/.github/for_maintainers/new_gudhi_version_creation.md
+++ b/.github/for_maintainers/new_gudhi_version_creation.md
@@ -26,7 +26,7 @@ md5sum gudhi.@GUDHI_VERSION@.tar.gz > md5sum.txt
sha256sum gudhi.@GUDHI_VERSION@.tar.gz > sha256sum.txt
sha512sum gudhi.@GUDHI_VERSION@.tar.gz > sha512sum.txt
-make -j 4 all && ctest -j 4 --output-on-failure
+make && ctest --output-on-failure
```
***[Check there are no error]***
@@ -61,7 +61,7 @@ cd ../..
tar -czvf gudhi.doc.@GUDHI_VERSION@.tar.gz gudhi.doc.@GUDHI_VERSION@
cd gudhi.@GUDHI_VERSION@/build
-make -j 4 all && ctest -j 4 --output-on-failure
+make && ctest --output-on-failure
```
***[Check there are no error]***
diff --git a/.github/next_release.md b/.github/next_release.md
index cbc7f661..50207638 100644
--- a/.github/next_release.md
+++ b/.github/next_release.md
@@ -7,10 +7,10 @@ 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.4.1:
-- [Coxeter triangulation](https://gudhi.inria.fr/doc/3.5.0rc2/group__coxeter__triangulation.html)
+- [Coxeter triangulation](https://gudhi.inria.fr/doc/latest/group__coxeter__triangulation.html)
- constructs a piecewise-linear approximation of an m-dimensional smooth manifold embedded in R^d using an ambient triangulation.
-- [Datasets generators](https://gudhi.inria.fr/python/3.5.0rc2/datasets_generators.html)
+- [Datasets generators](https://gudhi.inria.fr/python/latest/datasets_generators.html)
- the python module `points` enables the generation of points on a sphere or a flat torus.
- Miscellaneous
diff --git a/CMakeGUDHIVersion.txt b/CMakeGUDHIVersion.txt
index 7d9f20b4..75be0646 100644
--- a/CMakeGUDHIVersion.txt
+++ b/CMakeGUDHIVersion.txt
@@ -2,7 +2,7 @@
set (GUDHI_MAJOR_VERSION 3)
set (GUDHI_MINOR_VERSION 5)
# 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 0rc2)
+set (GUDHI_PATCH_VERSION 0)
set(GUDHI_VERSION ${GUDHI_MAJOR_VERSION}.${GUDHI_MINOR_VERSION}.${GUDHI_PATCH_VERSION})
message(STATUS "GUDHI version : ${GUDHI_VERSION}")