From c5c516e4d56478987ebffaca20d3206caf3db7d8 Mon Sep 17 00:00:00 2001 From: Benoit Chevallier-Mames <64148533+bcm-at-zama@users.noreply.github.com> Date: Mon, 4 Apr 2022 14:39:02 +0200 Subject: [PATCH] chore: releasing * chore: bump version to 0.1.0 * chore: improve the release template --- .github/ISSUE_TEMPLATE/release.md | 2 ++ docs/conf.py | 2 +- pyproject.toml | 2 +- src/concrete/ml/version.py | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/release.md b/.github/ISSUE_TEMPLATE/release.md index 0881a118b..ec54c2f9c 100644 --- a/.github/ISSUE_TEMPLATE/release.md +++ b/.github/ISSUE_TEMPLATE/release.md @@ -17,6 +17,8 @@ VERSION=X.Y.Z make set_version # or VERSION=X.Y.Z-rc? make set_version ``` +- [ ] Be sure to have pushed the new version to `main` branch + Then: - [ ] For non RC releases: check the release milestone issues, cut out what can't be completed in time and change the milestones for these issues diff --git a/docs/conf.py b/docs/conf.py index dada1edac..7a460fa65 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -27,7 +27,7 @@ root_url = root_url if root_url.endswith("/") else root_url + "/" # The full version, including alpha/beta/rc tags -release = "0.1.0-rc2" +release = "0.1.0" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 642962ce8..c04e36d9b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "concrete-ml" -version = "0.1.0-rc2" +version = "0.1.0" description = "ConcreteML is an open-source set of tools which aims to simplify the use of fully homomorphic encryption (FHE) for data scientists." license = "BSD-3-Clause-Clear" authors = [ diff --git a/src/concrete/ml/version.py b/src/concrete/ml/version.py index 538edcdb2..aba7a4bdf 100644 --- a/src/concrete/ml/version.py +++ b/src/concrete/ml/version.py @@ -1,3 +1,3 @@ """File to manage the version of the package.""" # Auto-generated by "make set_version" do not modify -__version__ = "0.1.0-rc2" +__version__ = "0.1.0"