Skip to content

Commit

Permalink
Merge pull request #128 from piotr-roslaniec/release-0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
piotr-roslaniec authored Aug 1, 2023
2 parents eb404fc + afe5234 commit 0745a7f
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.10.0
current_version = 0.11.0
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<stage>[^.]*)\.(?P<devnum>\d+))?
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## Unreleased
## [0.11.0] - 2023-08-01

### Added

Expand Down Expand Up @@ -303,6 +303,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

[0.2.0]: https://github.com/nucypher/rust-umbral/releases/tag/v0.2.0
[0.3.0]: https://github.com/nucypher/rust-umbral/releases/tag/v0.3.0
[0.3.3]: https://github.com/nucypher/rust-umbral/releases/tag/v0.3.3
[0.4.0]: https://github.com/nucypher/rust-umbral/releases/tag/v0.4.0
[0.5.0]: https://github.com/nucypher/rust-umbral/releases/tag/v0.5.0
[0.5.1]: https://github.com/nucypher/rust-umbral/releases/tag/v0.5.1
Expand All @@ -315,3 +316,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[0.9.1]: https://github.com/nucypher/rust-umbral/releases/tag/v0.9.1
[0.9.2]: https://github.com/nucypher/rust-umbral/releases/tag/v0.9.2
[0.10.0]: https://github.com/nucypher/rust-umbral/releases/tag/v0.10.0
[0.11.0]: https://github.com/nucypher/rust-umbral/releases/tag/v0.11.0
4 changes: 2 additions & 2 deletions PUBLISHING.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# New version publishing instructions

Ideally it would be done by a CI action.
For now it has to be done manually.
For now, it has to be done manually.


## Keeping the changelog and bumping the version
Expand All @@ -14,7 +14,7 @@ The version number part (major/minor/patch) that is bumped should correspond to
## Release commit

- Update `CHANGELOG.md` (replace `Unreleased` with the version and the release date).
- Use Python [Bumpversion](https://github.com/c4urself/bump2version/) to autmoatically update relevant version strings throughout the repo.
- Use Python [Bumpversion](https://github.com/c4urself/bump2version/) to automatically update relevant version strings throughout the repo.
- `bump2version <major/minor/patch> --new-version <major>.<minor>.<patch>`
- git push the commit and tag
- `git push upstream master --tags`
Expand Down
2 changes: 1 addition & 1 deletion umbral-pre-python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "umbral-pre-python"
authors = ["Bogdan Opanchuk <[email protected]>"]
version = "0.10.0"
version = "0.11.0"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion umbral-pre-python/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Bogdan Opanchuk'

# The full version, including alpha/beta/rc tags
release = '0.10.0'
release = '0.11.0'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion umbral-pre-python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
description="Implementation of Umbral proxy reencryption algorithm",
long_description=long_description,
long_description_content_type="text/markdown",
version="0.10.0",
version="0.11.0",
author="Bogdan Opanchuk",
author_email="[email protected]",
url="https://github.com/nucypher/rust-umbral/tree/master/umbral-pre-python",
Expand Down
2 changes: 1 addition & 1 deletion umbral-pre-wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "umbral-pre-wasm"
version = "0.10.0"
version = "0.11.0"
authors = ["Bogdan Opanchuk <[email protected]>"]
edition = "2021"
license = "GPL-3.0-only"
Expand Down
2 changes: 1 addition & 1 deletion umbral-pre-wasm/package.template.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"Bogdan Opanchuk <[email protected]>"
],
"description": "Implementation of Umbral proxy reencryption algorithm",
"version": "0.10.0",
"version": "0.11.0",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion umbral-pre/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "umbral-pre"
version = "0.10.0"
version = "0.11.0"
authors = ["Bogdan Opanchuk <[email protected]>"]
edition = "2021"
license = "GPL-3.0-only"
Expand Down

0 comments on commit 0745a7f

Please sign in to comment.