Skip to content

Commit

Permalink
Merge pull request #89 from piotr-roslaniec/release-0.14.0
Browse files Browse the repository at this point in the history
Release v0.14.0
  • Loading branch information
piotr-roslaniec authored Jan 22, 2024
2 parents 622b8c3 + 9fb1200 commit 958b724
Show file tree
Hide file tree
Showing 11 changed files with 38 additions and 18 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.13.0
current_version = 0.14.0
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<stage>[^.]*)\.(?P<devnum>\d+))?
Expand Down
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,26 @@ 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).


## [0.14.0] - 2024-01-12

### Changed

- Inlined WASM modules to simplify packaging for WASM users ([#83])

### Added

- Support for Python 3.11-3.12 ([#87])

### Fixed

- Fixed Python typings for `ThresholdMessageKit.decrypt_with_shared_secret()` and `combine_decryption_shares_simple()` ([#84])


[#84]: https://github.com/nucypher/nucypher-core/pull/84
[#83]: https://github.com/nucypher/nucypher-core/pull/83
[#87]: https://github.com/nucypher/nucypher-core/pull/87


## [0.13.0] - 2023-09-06

### Changed
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions PUBLISHING.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ Gitub Actions are configured to take care of this automatically.

## NPM package

In `nucypher-core-wasm` dir:
In `nucypher-core-wasm-bundler` directory:

- `rm -rf pkg`.
- `make`.
- `wasm-pack login`.
- `cd pkg`.
- `npm publish --access=public`.
```bash
npm install
npm build
npm publish --access=public
```

See see https://rustwasm.github.io/docs/wasm-pack/tutorials/npm-browser-packages/packaging-and-publishing.html for more info on publishing.
2 changes: 1 addition & 1 deletion nucypher-core-python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "nucypher-core-python"
authors = ["Bogdan Opanchuk <bogdan@opanchuk.net>"]
version = "0.13.0"
version = "0.14.0"
edition = "2018"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion nucypher-core-python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
description="Protocol structures of Nucypher network",
long_description=long_description,
long_description_content_type="text/markdown",
version="0.13.0",
version="0.14.0",
author="Bogdan Opanchuk",
author_email="bogdan@opanchuk.net",
url="https://github.com/nucypher/nucypher-core/tree/main/nucypher-core-python",
Expand Down
4 changes: 2 additions & 2 deletions nucypher-core-wasm-bundler/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion nucypher-core-wasm-bundler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nucypher/nucypher-core",
"version": "0.13.0-alpha.1",
"version": "0.14.1",
"license": "GPL-3.0-only",
"sideEffects": false,
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion nucypher-core-wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nucypher-core-wasm"
version = "0.13.0"
version = "0.14.0"
authors = [
"Bogdan Opanchuk <bogdan@opanchuk.net>",
"Piotr Roslaniec <p.roslaniec@gmail.com>"
Expand Down
2 changes: 1 addition & 1 deletion nucypher-core-wasm/package.template.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"Bogdan Opanchuk <bogdan@opanchuk.net>"
],
"description": "NuCypher network core data structures",
"version": "0.13.0",
"version": "0.14.0",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion nucypher-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nucypher-core"
version = "0.13.0"
version = "0.14.0"
authors = ["Bogdan Opanchuk <bogdan@opanchuk.net>"]
edition = "2021"
license = "GPL-3.0-only"
Expand Down

0 comments on commit 958b724

Please sign in to comment.