Skip to content

Commit ea121bc

Browse files
committed
get version from package.json instead, increment version to 0.1.0
1 parent 839ead7 commit ea121bc

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/create-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- name: Get latest tag
2626
id: get_latest_tag
27-
run: echo "LATEST_TAG=$(git describe --tags --abbrev=0 || echo v0.0.0)" >> $GITHUB_OUTPUT
27+
run: echo "LATEST_TAG=v$(jq -r '.version' package.json)" >> $GITHUB_OUTPUT
2828

2929
- name: Increment version
3030
id: increment_version

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Compiler files
22
cache/
3-
out/
43

54
# Ignores development broadcast logs
65
!/broadcast

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@uniswap/briefcase",
3-
"version": "0.0.1",
3+
"version": "0.1.0",
44
"description": "Smart contract interfaces of Uniswap protocol smart contracts",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)