Skip to content

Commit e7ad475

Browse files
authored
Update chain-wallet-libs version (#187)
# Description Update chain-wallet-libs version from 0.8.1 to 0.8.2. It is needed to fix publishing js package issue https://github.com/input-output-hk/catalyst-core/actions/runs/3731576993/jobs/6329967793 ## Type of change - [x] Bug fix (non-breaking change which fixes an issue) ## How Has This Been Tested? just a small versioning update, no new tests are needed. ## Checklist: - [x] My code follows the style guidelines of this project - [x] I have performed a self-review of my code - [x] I have commented my code, particularly in hard-to-understand areas - [x] I have made corresponding changes to the documentation - [x] My changes generate no new warnings - [x] I have added tests that prove my fix is effective or that my feature works - [x] New and existing unit tests pass locally with my changes - [x] Any dependent changes have been merged and published in downstream modules
2 parents f880f37 + 39c5f42 commit e7ad475

File tree

14 files changed

+15
-15
lines changed

14 files changed

+15
-15
lines changed

src/chain-wallet-libs/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## Unreleased
88

9-
## [0.8.1]
9+
## [0.8.2]
1010
- Updated Javascript wallet bindings, initial version of CIP-62 specification API.
1111
- *breaking change*: wallet_spending_counter replaced by wallet_spending_counters
1212
- *breaking change*: wallet_set_state now takes an array of spending counters

src/chain-wallet-libs/bindings/wallet-cordova/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wallet-cordova-plugin",
3-
"version": "0.8.1",
3+
"version": "0.8.2",
44
"description": "Jormungandr wallet Cordova Plugin",
55
"cordova": {
66
"id": "wallet-cordova-plugin",

src/chain-wallet-libs/bindings/wallet-cordova/plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8" ?>
22

3-
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="wallet-cordova-plugin" version="0.8.1">
3+
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="wallet-cordova-plugin" version="0.8.2">
44
<name>Wallet Cordova Plugin</name>
55
<description>Wallet Cordova Plugin</description>
66
<license>MIT OR Apache-2.0 </license>

src/chain-wallet-libs/bindings/wallet-cordova/tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wallet-cordova-plugin-tests",
3-
"version": "0.8.1",
3+
"version": "0.8.2",
44
"description": "",
55
"cordova": {
66
"id": "wallet-cordova-plugin-tests",

src/chain-wallet-libs/bindings/wallet-cordova/tests/plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
33
xmlns:android="http://schemas.android.com/apk/res/android"
44
id="wallet-cordova-plugin-tests"
5-
version="0.8.1">
5+
version="0.8.2">
66
<name>Wallet cordova plugin tests</name>
77
<license>Apache 2.0 OR MIT</license>
88

src/chain-wallet-libs/bindings/wallet-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = [
66
edition = "2018"
77
license = "MIT OR Apache-2.0"
88
name = "wallet-core"
9-
version = "0.8.1"
9+
version = "0.8.2"
1010

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

src/chain-wallet-libs/bindings/wallet-uniffi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wallet-uniffi"
3-
version = "0.8.1"
3+
version = "0.8.2"
44
edition = "2018"
55

66
[lib]

src/chain-wallet-libs/bindings/wallet-wasm-js/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2021"
99
license = "MIT OR Apache-2.0"
1010
name = "wallet-wasm-js"
1111
repository = "https://github.com/input-output-hk/catalyst-core"
12-
version = "0.8.1"
12+
version = "0.8.2"
1313

1414
[lib]
1515
crate-type = ["cdylib", "rlib"]
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wallet-js",
3-
"version": "0.8.1",
3+
"version": "0.8.2",
44
"description": "Jormungandr wallet capabilities for Javascript",
55
"main": "index.js",
66
"types": "index.d.ts",
@@ -10,6 +10,6 @@
1010
},
1111
"license": "MIT",
1212
"dependencies": {
13-
"@catalyst-core/wallet-wasm-js": "0.8.1"
13+
"@catalyst-core/wallet-wasm-js": "0.8.2"
1414
}
1515
}

src/chain-wallet-libs/bindings/wallet-wasm-js/js/package_test.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wallet-js",
3-
"version": "0.8.1",
3+
"version": "0.8.2",
44
"description": "Jormungandr wallet capabilities for Javascript",
55
"main": "index.js",
66
"repository": {

0 commit comments

Comments
 (0)