Skip to content

Commit 9b4eb5b

Browse files
semantic-release-botluchobonatti
authored andcommitted
fix: force new release
1 parent 778d085 commit 9b4eb5b

File tree

6 files changed

+64
-62
lines changed

6 files changed

+64
-62
lines changed

.github/workflows/docs.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ on:
44
push:
55
branches:
66
- main
7-
paths:
8-
- 'package.json'
9-
- 'typedoc.json'
107
workflow_dispatch:
118

129
jobs:

.github/workflows/release.yml

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -8,35 +8,32 @@ on:
88
jobs:
99
release:
1010
runs-on: ubuntu-latest
11+
1112
steps:
1213
- name: Checkout Code
1314
uses: actions/checkout@v4
14-
15+
with:
16+
fetch-depth: 0
17+
1518
- name: Setup Node.js
1619
uses: actions/setup-node@v4
1720
with:
1821
node-version: 20
1922
registry-url: 'https://registry.npmjs.org/'
2023

2124
- name: Install pnpm
22-
run: npm install -g pnpm
23-
24-
- name: Install Dependencies
25+
uses: pnpm/action-setup@v2
26+
with:
27+
version: 8
28+
29+
- name: Install dependencies
2530
run: pnpm install
26-
27-
- name: Build Package
28-
run: pnpm run build
2931

30-
- name: Create v0.0.0 tag if missing
31-
run: |
32-
git fetch --tags
33-
if ! git tag | grep -q v0.0.0; then
34-
git tag v0.0.0
35-
git push origin v0.0.0
36-
fi
32+
- name: Build package
33+
run: pnpm run build
3734

3835
- name: Run Semantic Release
39-
run: npx semantic-release
36+
uses: cycjimmy/semantic-release-action@v3
4037
env:
4138
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4239
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.releaserc.json

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,6 @@
2424
"npmPublish": true
2525
}
2626
],
27-
"@semantic-release/github",
28-
[
29-
"@semantic-release/git",
30-
{
31-
"assets": ["package.json", "CHANGELOG.md"],
32-
"message": "chore(release): ${nextRelease.version} [skip ci]"
33-
}
34-
]
27+
"@semantic-release/github"
3528
]
3629
}

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
## [1.0.2](https://github.com/BootNodeDev/uni-dev-kit/compare/v1.0.1...v1.0.2) (2025-05-23)
22

33

4+
### Bug Fixes
5+
6+
* add test chains support ([06afae3](https://github.com/BootNodeDev/uni-dev-kit/commit/06afae39ae11c7296f7935aa03c73d8bc4f6491d))
7+
* getQuote types ([2f0a747](https://github.com/BootNodeDev/uni-dev-kit/commit/2f0a747f051a86a48557acdcbebed25bce82c7b6))
8+
* nativeCurrency supported ([e3572f9](https://github.com/BootNodeDev/uni-dev-kit/commit/e3572f930c01cd9ec958782e9161f861732cb8e3))
9+
* package.json auto-update version ([cf21e1c](https://github.com/BootNodeDev/uni-dev-kit/commit/cf21e1c7b3508eff816d26d798fc4b7f5c4067c8))
10+
11+
12+
### Features
13+
14+
* add usePosition/getPosition ([7e3d037](https://github.com/BootNodeDev/uni-dev-kit/commit/7e3d037faf3e8e157a429975ed76465b752a2fae))
15+
16+
## [1.0.2](https://github.com/BootNodeDev/uni-dev-kit/compare/v1.0.1...v1.0.2) (2025-05-23)
17+
18+
419
### Bug Fixes
520

621
* package.json auto-update version ([cf21e1c](https://github.com/BootNodeDev/uni-dev-kit/commit/cf21e1c7b3508eff816d26d798fc4b7f5c4067c8))

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "uniswap-dev-kit",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"description": "A modern TypeScript library for integrating Uniswap into your dapp.",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -72,7 +72,7 @@
7272
"husky": "^9.0.11",
7373
"jsdom": "^26.1.0",
7474
"rimraf": "^6.0.1",
75-
"semantic-release": "^24.1.0",
75+
"semantic-release": "^24.2.4",
7676
"tsc-alias": "^1.8.16",
7777
"typedoc": "^0.28.4",
7878
"typescript": "^5.8.3",

pnpm-lock.yaml

Lines changed: 34 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)