Skip to content

Commit

Permalink
[release] 20240502 (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
stwiname authored May 2, 2024
1 parent 5fe7d34 commit cf49c97
Show file tree
Hide file tree
Showing 11 changed files with 28 additions and 26 deletions.
13 changes: 0 additions & 13 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
3 changes: 3 additions & 0 deletions .yarn/versions/079bff71.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
undecided:
- "@subql/common-stellar"
- "@subql/types-stellar"
3 changes: 3 additions & 0 deletions .yarn/versions/5f3b7d13.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
undecided:
- "@subql/common-stellar"
- "@subql/node-stellar"
3 changes: 3 additions & 0 deletions .yarn/versions/78768e0a.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
undecided:
- "@subql/node-stellar"
- "@subql/types-stellar"
5 changes: 4 additions & 1 deletion packages/common-stellar/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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
Expand Down
5 changes: 2 additions & 3 deletions packages/common-stellar/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -28,6 +28,5 @@
"devDependencies": {
"@types/js-yaml": "^4.0.4",
"@types/pino": "^6.3.12"
},
"stableVersion": "3.4.1"
}
}
5 changes: 4 additions & 1 deletion packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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
Expand Down
5 changes: 2 additions & 3 deletions packages/node/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -57,6 +57,5 @@
"files": [
"/dist",
"/bin"
],
"stableVersion": "3.10.2-1"
]
}
5 changes: 4 additions & 1 deletion packages/types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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
Expand Down
5 changes: 2 additions & 3 deletions packages/types/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -19,6 +19,5 @@
"dependencies": {
"@subql/types-core": "^0.7.0",
"stellar-sdk": "^11.2.2"
},
"stableVersion": "3.3.2-0"
}
}

0 comments on commit cf49c97

Please sign in to comment.