diff --git a/common/protocol/CHANGELOG.md b/common/protocol/CHANGELOG.md index ceb4c62d..a8389504 100644 --- a/common/protocol/CHANGELOG.md +++ b/common/protocol/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.1.0](https://github.com/KYVENetwork/kyvejs/compare/@kyvejs/protocol@1.0.14...@kyvejs/protocol@1.1.0) (2023-11-28) + +### Features + +- improve logging of debug information ([#90](https://github.com/KYVENetwork/kyvejs/issues/90)) ([ba3c1d6](https://github.com/KYVENetwork/kyvejs/commit/ba3c1d63060f38c112d7b5102341a0c9000d7d54)) +- made prerelease for types and sdk ([#96](https://github.com/KYVENetwork/kyvejs/issues/96)) ([38508c5](https://github.com/KYVENetwork/kyvejs/commit/38508c50d1d86e98339650626e21a1bc9017d9f5)) +- migrate decimals and korellia-2 ([#98](https://github.com/KYVENetwork/kyvejs/issues/98)) ([75f0626](https://github.com/KYVENetwork/kyvejs/commit/75f0626095a11e3a0d0137f5aa30d1d40f1a6674)) +- support chain v1.4.0 ([#105](https://github.com/KYVENetwork/kyvejs/issues/105)) ([503b71f](https://github.com/KYVENetwork/kyvejs/commit/503b71f40ed4d32c68d2bff34cfcf88120944c73)) + # [1.1.0](https://github.com/KYVENetwork/kyvejs/compare/@kyvejs/protocol@1.0.14...@kyvejs/protocol@1.1.0) (2023-11-16) ### Features diff --git a/common/protocol/package.json b/common/protocol/package.json index 6ba6f6dd..48423fa7 100644 --- a/common/protocol/package.json +++ b/common/protocol/package.json @@ -1,6 +1,6 @@ { "name": "@kyvejs/protocol", - "version": "1.0.14", + "version": "1.1.0", "main": "./dist/src/index.js", "types": "./dist/src/index.d.ts", "repository": { @@ -23,8 +23,8 @@ "@bundlr-network/client": "^0.8.9", "@cosmjs/proto-signing": "^0.27.1", "@cosmjs/stargate": "^0.27.1", - "@kyvejs/sdk": "1.0.5", - "@kyvejs/types": "1.1.0", + "@kyvejs/sdk": "1.1.0", + "@kyvejs/types": "1.2.0", "@types/cli-progress": "^3.9.2", "@types/jsonfile": "^6.0.1", "arweave": "^1.10.17", diff --git a/common/sdk/CHANGELOG.md b/common/sdk/CHANGELOG.md index 0395119d..a84bbb24 100644 --- a/common/sdk/CHANGELOG.md +++ b/common/sdk/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.1.0](https://github.com/KYVENetwork/kyvejs/compare/@kyvejs/sdk@1.1.0-rc1...@kyvejs/sdk@1.1.0) (2023-11-28) + +### Features + +- support chain v1.4.0 ([#105](https://github.com/KYVENetwork/kyvejs/issues/105)) ([503b71f](https://github.com/KYVENetwork/kyvejs/commit/503b71f40ed4d32c68d2bff34cfcf88120944c73)) + # [1.1.0](https://github.com/KYVENetwork/kyvejs/compare/@kyvejs/sdk@1.1.0-rc1...@kyvejs/sdk@1.1.0) (2023-11-16) **Note:** Version bump only for package @kyvejs/sdk diff --git a/common/sdk/package.json b/common/sdk/package.json index b4f7f7f3..8c341fdd 100644 --- a/common/sdk/package.json +++ b/common/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@kyvejs/sdk", - "version": "1.0.5", + "version": "1.1.0", "main": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ @@ -31,7 +31,7 @@ "@cosmjs/tendermint-rpc": "^0.31.3", "@cosmostation/extension-client": "^0.0.6", "@keplr-wallet/cosmos": "^0.12.44", - "@kyvejs/types": "1.1.0", + "@kyvejs/types": "1.2.0", "axios": "^0.27.2", "bech32": "2.0.0", "bignumber.js": "9.1.2", diff --git a/common/types/CHANGELOG.md b/common/types/CHANGELOG.md index 4793239f..769a8e78 100644 --- a/common/types/CHANGELOG.md +++ b/common/types/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.2.0](https://github.com/KYVENetwork/kyvejs/compare/@kyvejs/types@1.2.0-rc0...@kyvejs/types@1.2.0) (2023-11-28) + +### Features + +- support chain v1.4.0 ([#105](https://github.com/KYVENetwork/kyvejs/issues/105)) ([503b71f](https://github.com/KYVENetwork/kyvejs/commit/503b71f40ed4d32c68d2bff34cfcf88120944c73)) + # [1.2.0](https://github.com/KYVENetwork/kyvejs/compare/@kyvejs/types@1.2.0-rc0...@kyvejs/types@1.2.0) (2023-11-16) **Note:** Version bump only for package @kyvejs/types diff --git a/common/types/package.json b/common/types/package.json index 7fb7e7e4..6c911ae0 100644 --- a/common/types/package.json +++ b/common/types/package.json @@ -1,6 +1,6 @@ { "name": "@kyvejs/types", - "version": "1.1.0", + "version": "1.2.0", "main": "./dist/index.js", "types": "./dist/index.d.ts", "repository": { diff --git a/integrations/tendermint-bsync/CHANGELOG.md b/integrations/tendermint-bsync/CHANGELOG.md index c006bb93..9f4769b1 100644 --- a/integrations/tendermint-bsync/CHANGELOG.md +++ b/integrations/tendermint-bsync/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.1.0](https://github.com/KYVENetwork/kyvejs/compare/@kyvejs/tendermint-bsync@1.0.14...@kyvejs/tendermint-bsync@1.1.0) (2023-11-28) + +### Features + +- improve logging of debug information ([#90](https://github.com/KYVENetwork/kyvejs/issues/90)) ([ba3c1d6](https://github.com/KYVENetwork/kyvejs/commit/ba3c1d63060f38c112d7b5102341a0c9000d7d54)) +- support chain v1.4.0 ([#105](https://github.com/KYVENetwork/kyvejs/issues/105)) ([503b71f](https://github.com/KYVENetwork/kyvejs/commit/503b71f40ed4d32c68d2bff34cfcf88120944c73)) + # [1.1.0](https://github.com/KYVENetwork/kyvejs/compare/@kyvejs/tendermint-bsync@1.0.14...@kyvejs/tendermint-bsync@1.1.0) (2023-11-16) ### Features diff --git a/integrations/tendermint-bsync/package.json b/integrations/tendermint-bsync/package.json index cbd0d8cb..eabeb548 100644 --- a/integrations/tendermint-bsync/package.json +++ b/integrations/tendermint-bsync/package.json @@ -1,6 +1,6 @@ { "name": "@kyvejs/tendermint-bsync", - "version": "1.0.14", + "version": "1.1.0", "license": "MIT", "scripts": { "build": "rimraf dist && tsc", @@ -22,7 +22,7 @@ "singleQuote": true }, "dependencies": { - "@kyvejs/protocol": "1.0.14", + "@kyvejs/protocol": "1.1.0", "axios": "^0.27.2" }, "devDependencies": { diff --git a/integrations/tendermint-ssync/CHANGELOG.md b/integrations/tendermint-ssync/CHANGELOG.md index 5bf09a8c..6d440920 100644 --- a/integrations/tendermint-ssync/CHANGELOG.md +++ b/integrations/tendermint-ssync/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.1.0](https://github.com/KYVENetwork/kyvejs/compare/@kyvejs/tendermint-ssync@1.0.0...@kyvejs/tendermint-ssync@1.1.0) (2023-11-28) + +### Features + +- improve logging of debug information ([#90](https://github.com/KYVENetwork/kyvejs/issues/90)) ([ba3c1d6](https://github.com/KYVENetwork/kyvejs/commit/ba3c1d63060f38c112d7b5102341a0c9000d7d54)) +- support chain v1.4.0 ([#105](https://github.com/KYVENetwork/kyvejs/issues/105)) ([503b71f](https://github.com/KYVENetwork/kyvejs/commit/503b71f40ed4d32c68d2bff34cfcf88120944c73)) + # [1.1.0](https://github.com/KYVENetwork/kyvejs/compare/@kyvejs/tendermint-ssync@1.0.0...@kyvejs/tendermint-ssync@1.1.0) (2023-11-16) ### Features diff --git a/integrations/tendermint-ssync/package.json b/integrations/tendermint-ssync/package.json index 78217f33..8c0ca46f 100644 --- a/integrations/tendermint-ssync/package.json +++ b/integrations/tendermint-ssync/package.json @@ -1,6 +1,6 @@ { "name": "@kyvejs/tendermint-ssync", - "version": "1.0.0", + "version": "1.1.0", "license": "MIT", "scripts": { "build": "rimraf dist && tsc", @@ -22,7 +22,7 @@ "singleQuote": true }, "dependencies": { - "@kyvejs/protocol": "1.0.14", + "@kyvejs/protocol": "1.1.0", "axios": "^0.27.2" }, "devDependencies": { diff --git a/integrations/tendermint/CHANGELOG.md b/integrations/tendermint/CHANGELOG.md index 5997ea12..fd2ee547 100644 --- a/integrations/tendermint/CHANGELOG.md +++ b/integrations/tendermint/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.1.0](https://github.com/KYVENetwork/kyvejs/compare/@kyvejs/tendermint@1.0.11...@kyvejs/tendermint@1.1.0) (2023-11-28) + +### Features + +- improve logging of debug information ([#90](https://github.com/KYVENetwork/kyvejs/issues/90)) ([ba3c1d6](https://github.com/KYVENetwork/kyvejs/commit/ba3c1d63060f38c112d7b5102341a0c9000d7d54)) +- support chain v1.4.0 ([#105](https://github.com/KYVENetwork/kyvejs/issues/105)) ([503b71f](https://github.com/KYVENetwork/kyvejs/commit/503b71f40ed4d32c68d2bff34cfcf88120944c73)) + # [1.1.0](https://github.com/KYVENetwork/kyvejs/compare/@kyvejs/tendermint@1.0.11...@kyvejs/tendermint@1.1.0) (2023-11-16) ### Features diff --git a/integrations/tendermint/package.json b/integrations/tendermint/package.json index cd09a663..44f64d95 100644 --- a/integrations/tendermint/package.json +++ b/integrations/tendermint/package.json @@ -1,6 +1,6 @@ { "name": "@kyvejs/tendermint", - "version": "1.0.11", + "version": "1.1.0", "license": "MIT", "scripts": { "build": "rimraf dist && tsc", @@ -22,7 +22,7 @@ "singleQuote": true }, "dependencies": { - "@kyvejs/protocol": "1.0.14", + "@kyvejs/protocol": "1.1.0", "ajv": "^8.12.0", "axios": "^0.27.2", "dotenv": "^16.3.1" diff --git a/tools/kysor/CHANGELOG.md b/tools/kysor/CHANGELOG.md index 05f19f1d..06ddb872 100644 --- a/tools/kysor/CHANGELOG.md +++ b/tools/kysor/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.2.0](https://github.com/KYVENetwork/kyvejs/compare/@kyve/kysor@1.0.5...@kyve/kysor@1.2.0) (2023-11-28) + +### Features + +- made prerelease for types and sdk ([#96](https://github.com/KYVENetwork/kyvejs/issues/96)) ([38508c5](https://github.com/KYVENetwork/kyvejs/commit/38508c50d1d86e98339650626e21a1bc9017d9f5)) +- migrate decimals and korellia-2 ([#98](https://github.com/KYVENetwork/kyvejs/issues/98)) ([75f0626](https://github.com/KYVENetwork/kyvejs/commit/75f0626095a11e3a0d0137f5aa30d1d40f1a6674)) +- support chain v1.4.0 ([#105](https://github.com/KYVENetwork/kyvejs/issues/105)) ([503b71f](https://github.com/KYVENetwork/kyvejs/commit/503b71f40ed4d32c68d2bff34cfcf88120944c73)) + # [1.1.0](https://github.com/KYVENetwork/kyvejs/compare/@kyve/kysor@1.0.5...@kyve/kysor@1.1.0) (2023-11-16) ### Features diff --git a/tools/kysor/package.json b/tools/kysor/package.json index eb1c16fb..c75526b5 100644 --- a/tools/kysor/package.json +++ b/tools/kysor/package.json @@ -1,7 +1,7 @@ { "name": "@kyve/kysor", "description": "The Cosmovisor for KYVE protocol nodes", - "version": "1.1.0", + "version": "1.2.0", "main": "./dist/index.js", "types": "./dist/index.d.ts", "homepage": "https://github.com/KYVENetwork/kysor#readme", @@ -38,8 +38,8 @@ }, "dependencies": { "@iarna/toml": "^2.2.5", - "@kyvejs/sdk": "1.0.5", - "@kyvejs/types": "1.1.0", + "@kyvejs/sdk": "1.1.0", + "@kyvejs/types": "1.2.0", "axios": "^0.27.2", "bignumber.js": "^9.1.0", "commander": "^9.4.0",