Skip to content

Commit

Permalink
Update packages for rc
Browse files Browse the repository at this point in the history
  • Loading branch information
ytham committed Dec 29, 2023
1 parent 9f4ba8d commit 876b7a7
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 24 deletions.
2 changes: 1 addition & 1 deletion circuit/js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@axiom-crypto/circuit",
"version": "0.1.4-rc.0",
"version": "0.1.5-rc.0",
"author": "Intrinsic Technologies",
"license": "MIT",
"description": "Client SDK to write custom queries for Axiom, the ZK Coprocessor for Ethereum.",
Expand Down
6 changes: 3 additions & 3 deletions client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@axiom-crypto/client",
"version": "0.1.4-rc.0",
"version": "0.1.5-rc.0",
"author": "Intrinsic Technologies",
"license": "MIT",
"description": "Client SDK to write custom queries for Axiom, the ZK Coprocessor for Ethereum.",
Expand All @@ -23,11 +23,11 @@
"crypto"
],
"dependencies": {
"@axiom-crypto/circuit": "0.1.4-rc.0",
"@axiom-crypto/circuit": "0.1.5-rc.0",
"@axiom-crypto/core": "2.2.51-alpha.1",
"@axiom-crypto/halo2-lib-js": "0.2.13-alpha.1",
"@axiom-crypto/halo2-wasm": "0.2.10",
"@axiom-crypto/tools": "0.3.35",
"@axiom-crypto/tools": "0.3.35-rc.1",
"commander": "^11.1.0",
"ethers": "^6.8.1",
"viem": "^1.19.9"
Expand Down
16 changes: 8 additions & 8 deletions client/pnpm-lock.yaml

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

2 changes: 1 addition & 1 deletion client/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This is an autogenerated file. It should match the version number in package.json.
// Do not modify this file directly.

export const CLIENT_VERSION = "0.1.4-rc.0";
export const CLIENT_VERSION = "0.1.5-rc.0";
5 changes: 2 additions & 3 deletions harness/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@axiom-crypto/harness",
"version": "0.1.6-rc.0",
"version": "0.1.7-rc.0",
"author": "Intrinsic Technologies",
"license": "MIT",
"description": "Circuit harness for axiom-client",
Expand All @@ -23,7 +23,6 @@
"crypto"
],
"dependencies": {
"@axiom-crypto/client": "0.1.4",
"@axiom-crypto/core": "^2.2.50",
"@axiom-crypto/halo2-lib-js": "0.2.13-alpha.1",
"@axiom-crypto/halo2-wasm": "0.2.10",
Expand All @@ -44,6 +43,6 @@
"typescript": "^5.3.2"
},
"peerDependencies": {
"@axiom-crypto/client": "0.1.4-rc.0"
"@axiom-crypto/client": "0.1.5-rc.0"
}
}
14 changes: 7 additions & 7 deletions harness/pnpm-lock.yaml

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

2 changes: 1 addition & 1 deletion harness/test/integration/sepolia.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { listDir, makeFileMap } from "../utils";
import { harness } from "../../src/harness";

describe("Sepolia tests", () => {
if (process.env.PROVIDER_URI_SEPOLIA == undefined) {
if (process.env.PROVIDER_URI_SEPOLIA === undefined) {
throw new Error("`PROVIDER_URI_SEPOLIA` environment variable must be defined");
}

Expand Down

0 comments on commit 876b7a7

Please sign in to comment.