Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 2
fetch-depth: 0

- name: Set up Go
uses: actions/setup-go@v4
Expand Down Expand Up @@ -159,7 +159,11 @@ jobs:
# No tags exist yet, start with v1.0.0
NEW_VERSION="v1.0.0"
else
CURRENT_VERSION=${LATEST_TAG#${{ matrix.client }}/v}
if [ "${{ matrix.client }}" == "common" ]; then
CURRENT_VERSION=${LATEST_TAG#${{ matrix.client }}/v}
else
CURRENT_VERSION=${LATEST_TAG#clients/${{ matrix.client }}/v}
fi

# Split into parts
IFS='.' read -r -a VERSION_PARTS <<< "$CURRENT_VERSION"
Expand Down
2 changes: 1 addition & 1 deletion clients/convert/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
### Changelog

## 1.0.0 - 2025-12-16
## 1.0.0 - 2025-12-17

- Initial release
2 changes: 1 addition & 1 deletion clients/convert/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ go 1.24.0
toolchain go1.24.11

require (
github.com/binance/binance-connector-go/common v1.0.0
github.com/binance/binance-connector-go/common v1.0.1
github.com/stretchr/testify v1.11.1
)

Expand Down
4 changes: 2 additions & 2 deletions clients/convert/go.sum
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
github.com/andybalholm/brotli v1.2.0 h1:ukwgCxwYrmACq68yiUqwIWnGY0cTPox/M94sVwToPjQ=
github.com/andybalholm/brotli v1.2.0/go.mod h1:rzTDkvFWvIrjDXZHkuS16NPggd91W3kUSvPlQ1pLaKY=
github.com/binance/binance-connector-go/common v1.0.0 h1:F8sx0psPm1UUurH6aNHKsl78LUFHp1a9dNh34r9OQIg=
github.com/binance/binance-connector-go/common v1.0.0/go.mod h1:TKCzjT52KkAu2xi1P7pPNkjADska091govuQ21X9amM=
github.com/binance/binance-connector-go/common v1.0.1 h1:DPSKiPXf5M1jzPL1YYcMV94KGiq75pdKjZDC6maKIhU=
github.com/binance/binance-connector-go/common v1.0.1/go.mod h1:QetR4uDDBwMGHoHJbZvWmyc7P3uJh2Ty6C4COrwpyJY=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
Expand Down