Skip to content

Commit

Permalink
chore: releasing
Browse files Browse the repository at this point in the history
* chore: bump version to 0.1.0
* chore: improve the release template
  • Loading branch information
bcm-at-zama authored Apr 4, 2022
1 parent 6f2effb commit c5c516e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/ISSUE_TEMPLATE/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 = [
Expand Down
2 changes: 1 addition & 1 deletion src/concrete/ml/version.py
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit c5c516e

Please sign in to comment.