Skip to content

Commit

Permalink
Update versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
SoraSuegami committed Mar 23, 2024
1 parent 91f0ef7 commit ffe6f41
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions packages/apis/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zk-regex-apis"
version = "1.2.0"
version = "1.2.1"
license = "MIT"
edition = "2018"
exclude = ["index.node"]
Expand All @@ -12,7 +12,7 @@ authors = [
]

[lib]
crate-type = ["cdylib", "rlib"]
crate-type = ["rlib", "cdylib"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
6 changes: 3 additions & 3 deletions packages/apis/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zk-email/zk-regex-apis",
"version": "1.2.0",
"version": "1.2.1",
"description": "apis compatible with [zk-regex](https://github.com/zkemail/zk-regex/tree/main).",
"contributors": [
"Javier Su <[email protected]>",
Expand All @@ -17,8 +17,8 @@
"build": "cargo-cp-artifact -nc index.node -- cargo build --message-format=json-render-diagnostics",
"build-debug": "npm run build --",
"build-release": "npm run build -- --release",
"install-debug": "npm run build-debug",
"install": "node-pre-gyp install --update-binary --fallback-to-build=false || npm run build-release",
"install": "npm run build-debug",
"install-release": "node-pre-gyp install --update-binary --fallback-to-build=false || npm run build-release",
"test": "cargo test",
"package": "node-pre-gyp package",
"upload-binary": "npm run package && node-pre-gyp-github publish"
Expand Down
4 changes: 2 additions & 2 deletions packages/compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zk-regex-compiler"
version = "1.1.0"
version = "1.1.1"
authors = [
"Javier Su <[email protected]>",
"Kata Choi <[email protected]>",
Expand All @@ -16,7 +16,7 @@ name = "zk-regex"
path = "src/bin/compiler.rs"

[lib]
crate-type = ["cdylib", "rlib"]
crate-type = ["rlib", "cdylib"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
6 changes: 3 additions & 3 deletions packages/compiler/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zk-email/zk-regex-compiler",
"version": "1.1.0",
"version": "1.1.1",
"description": "a compiler to generate a regex verification circuit in circom from a user-defined regex. Please check [zk-regex](https://github.com/zkemail/zk-regex/tree/main) for the detail.",
"main": "index.node",
"contributors": [
Expand All @@ -17,8 +17,8 @@
"build": "cargo-cp-artifact -nc index.node -- cargo build --message-format=json-render-diagnostics",
"build-debug": "npm run build --",
"build-release": "npm run build -- --release",
"install-debug": "npm run build-debug",
"install": "node-pre-gyp install --update-binary --fallback-to-build=false || npm run build-release",
"install": "npm run build-debug",
"install-release": "node-pre-gyp install --update-binary --fallback-to-build=false || npm run build-release",
"test": "cargo test",
"package": "node-pre-gyp package",
"upload-binary": "npm run package && node-pre-gyp-github publish"
Expand Down

0 comments on commit ffe6f41

Please sign in to comment.