Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.14.0 #89

Merged
merged 5 commits into from
Jan 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 <[email protected]>"]
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="[email protected]",
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 <[email protected]>",
"Piotr Roslaniec <[email protected]>"
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 <[email protected]>"
],
"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 <[email protected]>"]
edition = "2021"
license = "GPL-3.0-only"
Expand Down
Loading