diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index ef55239a..74e942fa 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -11,21 +11,8 @@ concurrency: cancel-in-progress: false jobs: - pre-ci: - runs-on: ubuntu-latest - timeout-minutes: 1 - steps: - - name: 'Block Concurrent Executions' - uses: softprops/turnstyle@v1 - with: - poll-interval-seconds: 10 - env: - GITHUB_TOKEN: ${{ secrets.REPO_TOKEN }} - - Bump-Prerelease-Publish: name: Bump-Prerelease-Publish - needs: pre-ci if: "!startsWith(github.event.head_commit.message, '[SKIP CI]') && !startsWith(github.event.head_commit.message, '[release]') && github.repository == 'subquery/subql-stellar'" runs-on: ubuntu-latest steps: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5cb7a7aa..2c2c4ebd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,7 +31,7 @@ jobs: then echo "commit-message=${{ github.event.head_commit.message }}" >> "$GITHUB_OUTPUT" else - echo "commit-message=$(git log -1 --pretty=%B)" >> "$GITHUB_OUTPUT" + echo "commit-message=\"$(git log -1 --pretty=%B | head -n 1)\"" >> "$GITHUB_OUTPUT" fi Build-Publish: diff --git a/.yarn/versions/079bff71.yml b/.yarn/versions/079bff71.yml new file mode 100644 index 00000000..44a3d7fe --- /dev/null +++ b/.yarn/versions/079bff71.yml @@ -0,0 +1,3 @@ +undecided: + - "@subql/common-stellar" + - "@subql/types-stellar" diff --git a/.yarn/versions/5f3b7d13.yml b/.yarn/versions/5f3b7d13.yml new file mode 100644 index 00000000..44e7c8f1 --- /dev/null +++ b/.yarn/versions/5f3b7d13.yml @@ -0,0 +1,3 @@ +undecided: + - "@subql/common-stellar" + - "@subql/node-stellar" diff --git a/.yarn/versions/78768e0a.yml b/.yarn/versions/78768e0a.yml new file mode 100644 index 00000000..a70f55f6 --- /dev/null +++ b/.yarn/versions/78768e0a.yml @@ -0,0 +1,3 @@ +undecided: + - "@subql/node-stellar" + - "@subql/types-stellar" diff --git a/packages/common-stellar/CHANGELOG.md b/packages/common-stellar/CHANGELOG.md index 148d2ba0..96577f6d 100644 --- a/packages/common-stellar/CHANGELOG.md +++ b/packages/common-stellar/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [3.5.0] - 2024-05-02 ### Changed - Update dependencies and apply changes to match (#62) @@ -52,7 +54,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - rename `soroban` to `sorobanEndpoint` in network config (#16) ## [2.3.0] - 2023-09-12 -[Unreleased]: https://github.com/subquery/subql-stellar/compare/common-stellar/3.4.1...HEAD +[Unreleased]: https://github.com/subquery/subql-stellar/compare/common-stellar/3.5.0...HEAD +[3.5.0]: https://github.com/subquery/subql-stellar/compare/common-stellar/3.4.1...common-stellar/3.5.0 [3.4.1]: https://github.com/subquery/subql-stellar/compare/common-stellar/3.4.0...common-stellar/3.4.1 [3.4.0]: https://github.com/subquery/subql-stellar/compare/common-stellar/3.3.2...common-stellar/3.4.0 [3.3.2]: https://github.com/subquery/subql-stellar/compare/common-stellar/3.3.1...common-stellar/3.3.2 diff --git a/packages/common-stellar/package.json b/packages/common-stellar/package.json index bb22c097..07c4325b 100644 --- a/packages/common-stellar/package.json +++ b/packages/common-stellar/package.json @@ -1,6 +1,6 @@ { "name": "@subql/common-stellar", - "version": "3.4.2-0", + "version": "3.5.0", "description": "", "scripts": { "build": "rm -rf dist && tsc -b", @@ -28,6 +28,5 @@ "devDependencies": { "@types/js-yaml": "^4.0.4", "@types/pino": "^6.3.12" - }, - "stableVersion": "3.4.1" + } } diff --git a/packages/node/CHANGELOG.md b/packages/node/CHANGELOG.md index 460abae8..f707e785 100644 --- a/packages/node/CHANGELOG.md +++ b/packages/node/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [3.11.0] - 2024-05-02 ### Changed - Update dependencies and apply changes to match (#62) @@ -123,7 +125,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - rename `soroban` to `sorobanEndpoint` in network config (#16) ## [2.12.0] - 2023-09-12 -[Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.10.1...HEAD +[Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.11.0...HEAD +[3.11.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.10.1...node-stellar/3.11.0 [3.10.1]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.10.0...node-stellar/3.10.1 [3.10.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.9.1...node-stellar/3.10.0 [3.9.1]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.9.0...node-stellar/3.9.1 diff --git a/packages/node/package.json b/packages/node/package.json index 97c2724e..2effa32f 100644 --- a/packages/node/package.json +++ b/packages/node/package.json @@ -1,6 +1,6 @@ { "name": "@subql/node-stellar", - "version": "3.10.2-2", + "version": "3.11.0", "description": "", "author": "Ian He", "license": "GPL-3.0", @@ -57,6 +57,5 @@ "files": [ "/dist", "/bin" - ], - "stableVersion": "3.10.2-1" + ] } diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index 75f267c9..5f0b3bd1 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [3.4.0] - 2024-05-02 ### Changed - Update dependencies and apply changes to match (#62) @@ -40,7 +42,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Use @subql/types-core (#18) ## [2.3.0] - 2023-09-12 -[Unreleased]: https://github.com/subquery/subql-stellar/compare/types-stellar/3.3.1...HEAD +[Unreleased]: https://github.com/subquery/subql-stellar/compare/types-stellar/3.4.0...HEAD +[3.4.0]: https://github.com/subquery/subql-stellar/compare/types-stellar/3.3.1...types-stellar/3.4.0 [3.3.1]: https://github.com/subquery/subql-stellar/compare/types-stellar/3.3.0...types-stellar/3.3.1 [3.3.0]: https://github.com/subquery/subql-stellar/compare/types-stellar/3.2.1...types-stellar/3.3.0 [3.2.1]: https://github.com/subquery/subql-stellar/compare/types-stellar/3.2.0...types-stellar/3.2.1 diff --git a/packages/types/package.json b/packages/types/package.json index 0cfa2ef8..a42a5fa8 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@subql/types-stellar", - "version": "3.3.2-1", + "version": "3.4.0", "description": "", "homepage": "https://github.com/subquery/subql-stellar", "repository": "github:subquery/subql-stellar", @@ -19,6 +19,5 @@ "dependencies": { "@subql/types-core": "^0.7.0", "stellar-sdk": "^11.2.2" - }, - "stableVersion": "3.3.2-0" + } }