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

chore(release): publish #226

Merged
merged 3 commits into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# [0.4.2](https://github.com/mattrglobal/pairing_crypto/compare/0.4.2...0.4.3) (2024-10-21)
kenhuang marked this conversation as resolved.
Show resolved Hide resolved

React native >=72 support, gradle 8 support
kenhuang marked this conversation as resolved.
Show resolved Hide resolved

# [0.4.2](https://github.com/mattrglobal/pairing_crypto/compare/0.4.1...0.4.2) (2023-09-20)

Node 18.x support
Expand All @@ -20,4 +24,4 @@ Implementation updates to align with [draft-irtf-cfrg-bbs-signatures-02](https:/

# [0.1.0](https://github.com/mattrglobal/pairing_crypto/compare/0.1.0...master) (2022-12-20)

Initial release
Initial release
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pairing_crypto"
version = "0.4.2"
version = "0.4.3"
authors = ["Tobias Looker <[email protected]>", "Gaurav Tiwari <[email protected]>", "Vasilis Kalos <[email protected]>"]
description = "A library for some of the pairing cryptography schemes"
repository = "https://github.com/mattrglobal/pairing_crypto"
Expand Down
2 changes: 1 addition & 1 deletion tools/bbs-fixtures-generator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies.pairing_crypto]
version = "0.4.2"
version = "0.4.3"
path = "../../"
features = ["__private_bbs_fixtures_generator_api"]

Expand Down
2 changes: 1 addition & 1 deletion tools/bbs-generators/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies.pairing_crypto]
version = "0.4.2"
version = "0.4.3"
path = "../../"
features = ["__private_bbs_fixtures_generator_api"]

Expand Down
2 changes: 1 addition & 1 deletion wrappers/c/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ edition = "2018"
license = "Apache-2"
readme = "README.md"
name = "pairing_crypto_c"
version = "0.4.2"
version = "0.4.3"

[lib]
crate-type = ["staticlib", "cdylib", "rlib"]
Expand Down
2 changes: 1 addition & 1 deletion wrappers/java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group 'com.github.mattrglobal'
version '0.4.2-SNAPSHOT'
version '0.4.3-SNAPSHOT'

apply plugin: "java-library"

Expand Down
2 changes: 1 addition & 1 deletion wrappers/react-native/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mattrglobal/pairing-crypto-rn",
"version": "0.4.2",
"version": "0.4.3",
"description": "A native module implementation of the 'pairing crypto' crate for React Native",
"main": "lib/commonjs/index",
"module": "lib/module/index",
Expand Down
2 changes: 1 addition & 1 deletion wrappers/wasm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mattrglobal/pairing-crypto",
"version": "0.4.2",
"version": "0.4.3",
"author": "MATTR",
"license": "Apache-2.0",
"private": false,
Expand Down
Loading