Skip to content

Commit adba5a7

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

File tree

5 files changed

+28
-21
lines changed

5 files changed

+28
-21
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: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ jobs:
1111
steps:
1212
- name: Checkout Code
1313
uses: actions/checkout@v4
14+
with:
15+
fetch-depth: 0
1416

1517
- name: Setup Node.js
1618
uses: actions/setup-node@v4
@@ -27,16 +29,16 @@ jobs:
2729
- name: Build Package
2830
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
37-
3832
- name: Run Semantic Release
39-
run: npx semantic-release
33+
uses: cycjimmy/semantic-release-action@v3
34+
with:
35+
semantic_version: 22.0.0
36+
extra_plugins: |
37+
@semantic-release/commit-analyzer
38+
@semantic-release/release-notes-generator
39+
@semantic-release/changelog
40+
@semantic-release/npm
41+
@semantic-release/github
4042
env:
4143
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4244
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: 1 addition & 1 deletion
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",

0 commit comments

Comments
 (0)