@mysten/kiosk 0.9.7 → 0.9.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @mysten/kiosk
2
2
 
3
+ ## 0.9.8
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [0dfff33b95]
8
+ - @mysten/sui@1.1.2
9
+
3
10
  ## 0.9.7
4
11
 
5
12
  ### Patch Changes
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@mysten/kiosk",
3
3
  "author": "Mysten Labs <build@mystenlabs.com>",
4
4
  "description": "Sui Kiosk library",
5
- "version": "0.9.7",
5
+ "version": "0.9.8",
6
6
  "license": "Apache-2.0",
7
7
  "type": "commonjs",
8
8
  "main": "./dist/cjs/index.js",
@@ -24,7 +24,7 @@
24
24
  "node": ">=18"
25
25
  },
26
26
  "dependencies": {
27
- "@mysten/sui": "1.1.1"
27
+ "@mysten/sui": "1.1.2"
28
28
  },
29
29
  "devDependencies": {
30
30
  "cross-env": "^7.0.3",
@@ -47,6 +47,6 @@
47
47
  "lint": "pnpm run eslint:check && pnpm run prettier:check",
48
48
  "lint:fix": "pnpm run eslint:fix && pnpm run prettier:fix",
49
49
  "test:e2e": "wait-on http://127.0.0.1:9123 -l --timeout 120000 && vitest run e2e",
50
- "prepare:e2e": "cargo build --bin sui-test-validator --bin sui --profile dev && cross-env RUST_LOG=info,sui=error,anemo_tower=warn,consensus=off cargo run --bin sui-test-validator"
50
+ "prepare:e2e": "cargo build --bin sui-test-validator --bin sui --profile dev && cross-env RUST_LOG=warn,sui=error,anemo_tower=warn,consensus=off cargo run --bin sui-test-validator"
51
51
  }
52
52
  }