Skip to content

Commit

Permalink
chore(release): publish v2.1.0
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Somogyvari <peter.somogyvari@accenture.com>
  • Loading branch information
petermetz committed Dec 2, 2024
1 parent 1c49527 commit dc140e6
Show file tree
Hide file tree
Showing 1,242 changed files with 2,287 additions and 1,938 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,25 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01)

### Bug Fixes

* **besu:** deployContractSolBytecodeNoKeychainV1 requires keychainId ([11dacbc](https://github.com/hyperledger/cacti/commit/11dacbcef25ba3e7fa9f9880f60655be1e2396ef)), closes [#3586](https://github.com/hyperledger/cacti/issues/3586)
* **connector-besu:** do not crash if ledger unreachable - send HTTP 503 ([394323e](https://github.com/hyperledger/cacti/commit/394323e91e3bd0df57c87d6bae406298c559fc7f))
* **connector-besu:** set contract bytecode field's max length to 49154 ([33b2cf0](https://github.com/hyperledger/cacti/commit/33b2cf06eb239986aa0c50221ce390a3a27f3a45)), closes [#3636](https://github.com/hyperledger/cacti/issues/3636)

### Features

* **cactus-connector-besu:** add IRunTransactionV1Exchange to share receipt data ([3097c84](https://github.com/hyperledger/cacti/commit/3097c84895b73d44f8f61ec5e2a09abc1e8306e8))
* **cactus-consortium:** add Ethereum ledger type ([4265725](https://github.com/hyperledger/cacti/commit/426572521646cd7391be66c09590991cf83fcf01))
* **cactus-core-api:** add Ethereum ledger type ([a1be603](https://github.com/hyperledger/cacti/commit/a1be603c3ceea748579ad96a1d2b38a2438eec8b))
* **copm:** add fabric COPM implementation ([7af9983](https://github.com/hyperledger/cacti/commit/7af99833f4db237d6aba7223a31add5723faba9d))

### Performance Improvements

* **github:** add knob/flag to manually override CI skip ([ed36bbe](https://github.com/hyperledger/cacti/commit/ed36bbe80b0b610761c976bc397fd011a423bf42))

# [2.0.0](https://github.com/hyperledger-cacti/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion RELEASE_MANAGEMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ With VSCode you can do a project wide search & replace where:

- Also double check that the `"version": "?.?.?"` property has been updated in the package.json files all over the packages.

- Finally a generic full-text search project-wide for the previous version string `?.?.?` where you exclude these from the results: `CHANGELOG.md,go.sum,go.mod,yarn.lock,package-lock.json,.yarn/,weaver/core/relay/Cargo.toml` and then replace the findings with the new version such as `1.1.3`
- Finally a generic full-text search project-wide for the previous version string `?.?.?` where you exclude these from the results: `rust/fixtures/ink,go/generated/,kotlin/generated/,typescript/generated,openapi.json,.github/workflows/actionlint.yaml,.github/workflows/.dast-nuclei-cmd-api-server.yaml,CHANGELOG.md,go.sum,go.mod,yarn.lock,package-lock.json,.yarn/,weaver/core/relay/Cargo.toml` and then replace the findings with the new version such as `1.1.3`

- update the lock file if necessary
```sh
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,10 @@ repositories {
}
}
dependencies {
implementation(group: 'org.hyperledger.cacti.weaver.sdk.corda', name: 'weaver-sdk-corda', version: "2.0.0")
implementation(group: 'org.hyperledger.cacti.weaver.imodule.corda', name: 'interop-contracts', version: "2.0.0")
implementation(group: 'org.hyperledger.cacti.weaver.imodule.corda', name: 'interop-workflows', version: "2.0.0")
implementation(group: 'org.hyperledger.cacti.weaver.protos', name: 'protos-java-kt', version: "2.0.0")
implementation(group: 'org.hyperledger.cacti.weaver.sdk.corda', name: 'weaver-sdk-corda', version: "2.1.0")
implementation(group: 'org.hyperledger.cacti.weaver.imodule.corda', name: 'interop-contracts', version: "2.1.0")
implementation(group: 'org.hyperledger.cacti.weaver.imodule.corda', name: 'interop-workflows', version: "2.1.0")
implementation(group: 'org.hyperledger.cacti.weaver.protos', name: 'protos-java-kt', version: "2.1.0")
}
```
(Or check out the [package website](https://github.com/hyperledger-cacti/cacti/packages/1856827) and select a different version.)
Expand Down Expand Up @@ -445,7 +445,7 @@ Weaver provides a [pre-built image](https://github.com/hyperledger-cacti/cacti/p
RELAY_PORT=<relay-server-port/"port" in config.toml>
EXTERNAL_NETWORK=<docker-bridge-network>
DOCKER_IMAGE_NAME=ghcr.io/hyperledger/cacti-weaver-relay-server
DOCKER_TAG=2.0.0
DOCKER_TAG=2.1.0
```
- The `PATH_TO_CONFIG` variable should point to the properties file typically named `config.toml` (you can name this whatever you wish). See further below for instructions to write this file.
- The `RELAY_NAME` variable specifies a unique name for this relay. It should match what's specified in the `config.toml` (more on that below).
Expand Down Expand Up @@ -536,7 +536,7 @@ Weaver provides a [pre-built image](https://github.com/hyperledger-cacti/cacti/p
DRIVER_RPC_PASSWORD=<driver-rpc-username>
EXTERNAL_NETWORK=<docker-bridge-network>
DOCKER_IMAGE_NAME=ghcr.io/hyperledger/cacti-weaver-driver-corda
DOCKER_TAG=2.0.0
DOCKER_TAG=2.1.0
RELAY_TLS=<true|false>
RELAY_TLSCA_TRUST_STORE=<truststore-jks-file-path>
RELAY_TLSCA_TRUST_STORE_PASSWORD=<truststore-jks-file-password>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ Weaver provides a [pre-built image](https://github.com/hyperledger-cacti/cacti/p
RELAY_PORT=<relay-server-port/"port" in config.toml>
EXTERNAL_NETWORK=<docker-bridge-network>
DOCKER_IMAGE_NAME=ghcr.io/hyperledger/cacti-weaver-relay-server
DOCKER_TAG=2.0.0
DOCKER_TAG=2.1.0
```
- The `PATH_TO_CONFIG` variable should point to the properties file typically named `config.toml` (you can name this whatever you wish). See further below for instructions to write this file.
- The `RELAY_NAME` variable specifies a unique name for this relay. It should match what's specified in the `config.toml` (more on that below).
Expand Down Expand Up @@ -630,7 +630,7 @@ Weaver provides a [pre-built image](https://github.com/hyperledger-cacti/cacti/p
EXTERNAL_NETWORK=<docker-bridge-network>
TLS_CREDENTIALS_DIR=<dir-with-tls-cert-and-key>
DOCKER_IMAGE_NAME=ghcr.io/hyperledger/cacti-weaver-driver-fabric
DOCKER_TAG=2.0.0
DOCKER_TAG=2.1.0
DRIVER_TLS=<true|false>
DRIVER_TLS_CERT_PATH=path_to_tls_cert_pem_for_driver
DRIVER_TLS_KEY_PATH=path_to_tls_key_pem_for_driver
Expand Down
4 changes: 4 additions & 0 deletions examples/cactus-common-example-server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01)

**Note:** Version bump only for package @hyperledger/cactus-common-example-server

# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15)

**Note:** Version bump only for package @hyperledger/cactus-common-example-server
Expand Down
8 changes: 4 additions & 4 deletions examples/cactus-common-example-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperledger/cactus-common-example-server",
"version": "2.0.0",
"version": "2.1.0",
"description": "Allows Cactus nodes to interact with HTLC ETH contracts",
"keywords": [
"Hyperledger",
Expand Down Expand Up @@ -42,8 +42,8 @@
"build:dev:backend:postbuild": "cp -f ../../yarn.lock ./dist/"
},
"dependencies": {
"@hyperledger/cactus-common": "2.0.0",
"@hyperledger/cactus-core-api": "2.0.0",
"@hyperledger/cactus-common": "2.1.0",
"@hyperledger/cactus-core-api": "2.1.0",
"@types/node": "18.11.9",
"body-parser": "1.20.3",
"config": "3.3.7",
Expand All @@ -66,7 +66,7 @@
"xmlhttprequest": "1.8.0"
},
"devDependencies": {
"@hyperledger/cactus-test-tooling": "2.0.0",
"@hyperledger/cactus-test-tooling": "2.1.0",
"@types/config": "3.3.0",
"@types/cookie-parser": "1.4.5",
"@types/debug": "4.1.8",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01)

**Note:** Version bump only for package @hyperledger/cactus-example-carbon-accounting-backend

# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15)

**Note:** Version bump only for package @hyperledger/cactus-example-carbon-accounting-backend
Expand Down
22 changes: 11 additions & 11 deletions examples/cactus-example-carbon-accounting-backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperledger/cactus-example-carbon-accounting-backend",
"version": "2.0.0",
"version": "2.1.0",
"description": "An example application showing how to use Cactus when implementing a Carbon Accounting Application where two or more blockchains are sharing data with each other to achieve a certain business outcome beneficial to multiple parties (business organizations).",
"keywords": [
"Hyperledger",
Expand Down Expand Up @@ -52,16 +52,16 @@
"webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js"
},
"dependencies": {
"@hyperledger/cactus-api-client": "2.0.0",
"@hyperledger/cactus-cmd-api-server": "2.0.0",
"@hyperledger/cactus-common": "2.0.0",
"@hyperledger/cactus-core": "2.0.0",
"@hyperledger/cactus-core-api": "2.0.0",
"@hyperledger/cactus-example-carbon-accounting-business-logic-plugin": "2.0.0",
"@hyperledger/cactus-plugin-keychain-memory": "2.0.0",
"@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0",
"@hyperledger/cactus-plugin-ledger-connector-xdai": "2.0.0",
"@hyperledger/cactus-test-tooling": "2.0.0",
"@hyperledger/cactus-api-client": "2.1.0",
"@hyperledger/cactus-cmd-api-server": "2.1.0",
"@hyperledger/cactus-common": "2.1.0",
"@hyperledger/cactus-core": "2.1.0",
"@hyperledger/cactus-core-api": "2.1.0",
"@hyperledger/cactus-example-carbon-accounting-business-logic-plugin": "2.1.0",
"@hyperledger/cactus-plugin-keychain-memory": "2.1.0",
"@hyperledger/cactus-plugin-ledger-connector-fabric": "2.1.0",
"@hyperledger/cactus-plugin-ledger-connector-xdai": "2.1.0",
"@hyperledger/cactus-test-tooling": "2.1.0",
"@openzeppelin/contracts": "4.9.6",
"@openzeppelin/contracts-upgradeable": "4.9.6",
"async-exit-hook": "2.0.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01)

**Note:** Version bump only for package @hyperledger/cactus-example-carbon-accounting-business-logic-plugin

# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15)

**Note:** Version bump only for package @hyperledger/cactus-example-carbon-accounting-business-logic-plugin
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperledger/cactus-example-carbon-accounting-business-logic-plugin",
"version": "2.0.0",
"version": "2.1.0",
"description": "An example business logic plugin implementation for Cactus",
"keywords": [
"Hyperledger",
Expand Down Expand Up @@ -55,14 +55,14 @@
"webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js"
},
"dependencies": {
"@hyperledger/cactus-api-client": "2.0.0",
"@hyperledger/cactus-common": "2.0.0",
"@hyperledger/cactus-core": "2.0.0",
"@hyperledger/cactus-core-api": "2.0.0",
"@hyperledger/cactus-plugin-consortium-manual": "2.0.0",
"@hyperledger/cactus-plugin-keychain-memory": "2.0.0",
"@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0",
"@hyperledger/cactus-plugin-ledger-connector-xdai": "2.0.0",
"@hyperledger/cactus-api-client": "2.1.0",
"@hyperledger/cactus-common": "2.1.0",
"@hyperledger/cactus-core": "2.1.0",
"@hyperledger/cactus-core-api": "2.1.0",
"@hyperledger/cactus-plugin-consortium-manual": "2.1.0",
"@hyperledger/cactus-plugin-keychain-memory": "2.1.0",
"@hyperledger/cactus-plugin-ledger-connector-fabric": "2.1.0",
"@hyperledger/cactus-plugin-ledger-connector-xdai": "2.1.0",
"async-exit-hook": "2.0.1",
"axios": "1.7.7",
"express": "4.21.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "Hyperledger Cactus Example - Carbon Accounting App",
"description": "Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved.",
"version": "2.0.0",
"version": "2.1.0",
"license": {
"name": "Apache-2.0",
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "Hyperledger Cactus Example - Carbon Accounting App",
"description": "Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved.",
"version": "2.0.0",
"version": "2.1.0",
"license": {
"name": "Apache-2.0",
"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Demonstrates how a business use case can be satisfied with Cactus when multiple
## Overview
This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://github.com/OAI/OpenAPI-Specification) from a remote server, you can easily generate an API client.

- API version: 2.0.0
- API version: 2.1.0
- Package version:
- Build package: org.openapitools.codegen.languages.KotlinClientCodegen

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Hyperledger Cactus Example - Carbon Accounting App
* Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved.
*
* The version of the OpenAPI document: 2.0.0
* The version of the OpenAPI document: 2.1.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Hyperledger Cactus Example - Carbon Accounting App
* Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved.
*
* The version of the OpenAPI document: 2.0.0
* The version of the OpenAPI document: 2.1.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Hyperledger Cactus Example - Carbon Accounting App
* Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved.
*
* The version of the OpenAPI document: 2.0.0
* The version of the OpenAPI document: 2.1.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Hyperledger Cactus Example - Carbon Accounting App
* Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved.
*
* The version of the OpenAPI document: 2.0.0
* The version of the OpenAPI document: 2.1.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Hyperledger Cactus Example - Carbon Accounting App
* Demonstrates how a business use case can be satisfied with Cactus when multiple distinct ledgers are involved.
*
* The version of the OpenAPI document: 2.0.0
* The version of the OpenAPI document: 2.1.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01)

**Note:** Version bump only for package @hyperledger/cactus-example-carbon-accounting-frontend

# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15)

**Note:** Version bump only for package @hyperledger/cactus-example-carbon-accounting-frontend
Expand Down
16 changes: 8 additions & 8 deletions examples/cactus-example-carbon-accounting-frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperledger/cactus-example-carbon-accounting-frontend",
"version": "2.0.0",
"version": "2.1.0",
"description": "The frontend component of an example project demonstrating how Cacti can be used for cross-chain dapp development.",
"keywords": [
"Hyperledger",
Expand Down Expand Up @@ -54,13 +54,13 @@
"@angular/platform-browser": "16.2.4",
"@angular/platform-browser-dynamic": "16.2.4",
"@angular/router": "16.2.4",
"@hyperledger/cactus-api-client": "2.0.0",
"@hyperledger/cactus-common": "2.0.0",
"@hyperledger/cactus-core-api": "2.0.0",
"@hyperledger/cactus-example-carbon-accounting-business-logic-plugin": "2.0.0",
"@hyperledger/cactus-plugin-consortium-manual": "2.0.0",
"@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0",
"@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0",
"@hyperledger/cactus-api-client": "2.1.0",
"@hyperledger/cactus-common": "2.1.0",
"@hyperledger/cactus-core-api": "2.1.0",
"@hyperledger/cactus-example-carbon-accounting-business-logic-plugin": "2.1.0",
"@hyperledger/cactus-plugin-consortium-manual": "2.1.0",
"@hyperledger/cactus-plugin-ledger-connector-besu": "2.1.0",
"@hyperledger/cactus-plugin-ledger-connector-fabric": "2.1.0",
"@ionic-native/core": "5.36.0",
"@ionic-native/splash-screen": "patch:@ionic-native/splash-screen@npm%3A5.36.0#~/.yarn/patches/@ionic-native-splash-screen-npm-5.36.0-531cbbe0f8.patch",
"@ionic-native/status-bar": "patch:@ionic-native/status-bar@npm%3A5.36.0#~/.yarn/patches/@ionic-native-status-bar-npm-5.36.0-1ca86cbaad.patch",
Expand Down
4 changes: 4 additions & 0 deletions examples/cactus-example-cbdc-bridging-backend/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.1.0](https://github.com/hyperledger/cacti/compare/v2.0.0...v2.1.0) (2024-12-01)

**Note:** Version bump only for package @hyperledger/cactus-example-cbdc-bridging-backend

# [2.0.0](https://github.com/hyperledger/cacti/compare/v2.0.0-rc.7...v2.0.0) (2024-10-15)

**Note:** Version bump only for package @hyperledger/cactus-example-cbdc-bridging-backend
Expand Down
26 changes: 13 additions & 13 deletions examples/cactus-example-cbdc-bridging-backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperledger/cactus-example-cbdc-bridging-backend",
"version": "2.0.0",
"version": "2.1.0",
"description": "An example application showing how to use Cacti when implementing a CBDC bridging application between Hyperledger Fabric and Hyperledger Besu.",
"keywords": [
"Hyperledger",
Expand Down Expand Up @@ -55,18 +55,18 @@
"webpack:dev:web": "webpack --env=dev --target=web --config ../../webpack.config.js"
},
"dependencies": {
"@hyperledger/cactus-api-client": "2.0.0",
"@hyperledger/cactus-cmd-api-server": "2.0.0",
"@hyperledger/cactus-common": "2.0.0",
"@hyperledger/cactus-core": "2.0.0",
"@hyperledger/cactus-core-api": "2.0.0",
"@hyperledger/cactus-plugin-keychain-memory": "2.0.0",
"@hyperledger/cactus-plugin-ledger-connector-besu": "2.0.0",
"@hyperledger/cactus-plugin-ledger-connector-fabric": "2.0.0",
"@hyperledger/cactus-plugin-ledger-connector-xdai": "2.0.0",
"@hyperledger/cactus-plugin-object-store-ipfs": "2.0.0",
"@hyperledger/cactus-plugin-satp-hermes": "2.0.0",
"@hyperledger/cactus-test-tooling": "2.0.0",
"@hyperledger/cactus-api-client": "2.1.0",
"@hyperledger/cactus-cmd-api-server": "2.1.0",
"@hyperledger/cactus-common": "2.1.0",
"@hyperledger/cactus-core": "2.1.0",
"@hyperledger/cactus-core-api": "2.1.0",
"@hyperledger/cactus-plugin-keychain-memory": "2.1.0",
"@hyperledger/cactus-plugin-ledger-connector-besu": "2.1.0",
"@hyperledger/cactus-plugin-ledger-connector-fabric": "2.1.0",
"@hyperledger/cactus-plugin-ledger-connector-xdai": "2.1.0",
"@hyperledger/cactus-plugin-object-store-ipfs": "2.1.0",
"@hyperledger/cactus-plugin-satp-hermes": "2.1.0",
"@hyperledger/cactus-test-tooling": "2.1.0",
"@openzeppelin/contracts": "4.9.6",
"@openzeppelin/contracts-upgradeable": "4.9.6",
"async-exit-hook": "2.0.1",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperledger/cacti-example-cbdc-bridging-frontend",
"version": "2.0.0",
"version": "2.1.0",
"private": true,
"license": "Apache-2.0",
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperledger/cactus-example-discounted-asset-trade-client",
"version": "2.0.0",
"version": "2.1.0",
"description": "Client for interacting with discounted asset trade sample app and some tools for setting up indy enviroment",
"keywords": [
"Hyperledger",
Expand Down
Loading

0 comments on commit dc140e6

Please sign in to comment.