diff --git a/packages/common-algorand/CHANGELOG.md b/packages/common-algorand/CHANGELOG.md index bc2de385..66d44e22 100644 --- a/packages/common-algorand/CHANGELOG.md +++ b/packages/common-algorand/CHANGELOG.md @@ -8,9 +8,14 @@ All logs must start with the format: [x.y.z] - yyyy-mm-dd ## [Unreleased] -## [1.0.0] - 2022-08.04 +## [1.0.1] - 2022-08-09 +### Fixes +- Fixed `assetId` on transaction filter being validated as a string. (#9) + +## [1.0.0] - 2022-08-04 Initial Algorand support -[Unreleased]: https://github.com/subquery/subql/compare/common-algorand/v1.0.0...HEAD +[Unreleased]: https://github.com/subquery/subql/compare/common-algorand/v1.0.1...HEAD +[1.0.1]: https://github.com/subquery/subql/compare/common-algorand/v1.0.0...common-algorand/v1.0.1 [1.0.0]: https://github.com/subquery/subql/compare/common-algorand/v1.0.0 diff --git a/packages/common-algorand/package.json b/packages/common-algorand/package.json index 849822cd..416ca6e4 100644 --- a/packages/common-algorand/package.json +++ b/packages/common-algorand/package.json @@ -1,6 +1,6 @@ { "name": "@subql/common-algorand", - "version": "1.0.1-0", + "version": "1.0.1", "description": "", "scripts": { "build": "rm -rf dist && tsc -b", @@ -26,6 +26,5 @@ "@types/js-yaml": "^4.0.4", "@types/pino": "^6.3.12", "@types/semver": "^7" - }, - "stableVersion": "1.0.0" + } } diff --git a/packages/node/CHANGELOG.md b/packages/node/CHANGELOG.md index f7a9a3b4..190dbdd7 100644 --- a/packages/node/CHANGELOG.md +++ b/packages/node/CHANGELOG.md @@ -6,9 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.6.1] - 2022-08-09 + +### Fixed +- Filtering issues with transaction handlers. (#9) + +### Changed +- Synced latest changes from main repo. (#10) + ## [1.6.0] - 2022-08-04 Initial Algorand support. -[Unreleased]: https://github.com/subquery/subql/compare/node/v1.6.0...HEAD +[Unreleased]: https://github.com/subquery/subql/compare/node/v1.6.1...HEAD +[1.6.1]: https://github.com/subquery/subql/compare/node/v1.6.0.../node/v1.6.1 [1.6.0]: https://github.com/subquery/subql/compare/node/v1.6.0 diff --git a/packages/node/package.json b/packages/node/package.json index 4de06c41..f23a4192 100644 --- a/packages/node/package.json +++ b/packages/node/package.json @@ -1,6 +1,6 @@ { "name": "@subql/node-algorand", - "version": "1.6.1-1", + "version": "1.6.1", "description": "", "author": "Ian He", "license": "Apache-2.0", @@ -68,6 +68,5 @@ "files": [ "/dist", "/bin" - ], - "stableVersion": "1.6.1-0" + ] }