Skip to content

Commit b5dbb0f

Browse files
committed
Bump version to 1.0.2
1 parent 26afcce commit b5dbb0f

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Every API endpoint is available as a subcommand, with predictable flags and stru
2020
curl -fsSL https://raw.githubusercontent.com/twelvedata/twelvedata-cli/main/install.sh | bash
2121
```
2222

23-
Pin a specific version: append `-s v1.0.1`. Override the install location with `TWELVEDATA_INSTALL=<dir>` (default `~/.twelvedata`).
23+
Pin a specific version: append `-s v1.0.2`. Override the install location with `TWELVEDATA_INSTALL=<dir>` (default `~/.twelvedata`).
2424

2525
### Homebrew (macOS / Linux)
2626

@@ -36,12 +36,12 @@ Upgrade later with `brew update && brew upgrade twelvedata`. The tap is auto-bum
3636
irm https://raw.githubusercontent.com/twelvedata/twelvedata-cli/main/install.ps1 | iex
3737
```
3838

39-
Pin a specific version: `$env:TWELVEDATA_VERSION = 'v1.0.1'` before piping. Override the install location with `$env:TWELVEDATA_INSTALL`.
39+
Pin a specific version: `$env:TWELVEDATA_VERSION = 'v1.0.2'` before piping. Override the install location with `$env:TWELVEDATA_INSTALL`.
4040

4141
### Go
4242

4343
```sh
44-
go install github.com/twelvedata/twelvedata-cli/cmd/twelvedata@v1.0.1
44+
go install github.com/twelvedata/twelvedata-cli/cmd/twelvedata@v1.0.2
4545
```
4646

4747
### Prebuilt binaries
@@ -184,7 +184,7 @@ In machine mode the payload shape is:
184184
{
185185
"ok": true,
186186
"checks": [
187-
{ "name": "CLI Version", "status": "pass", "message": "v1.0.1 (latest)" },
187+
{ "name": "CLI Version", "status": "pass", "message": "v1.0.2 (latest)" },
188188
{ "name": "API Key", "status": "pass", "message": "abc...wxyz (source: secure storage, profile: default)" },
189189
{ "name": "Credential Storage", "status": "pass", "message": "Secret Service (libsecret)" },
190190
{ "name": "API Validation", "status": "pass", "message": "API key accepted" }
@@ -197,7 +197,7 @@ In machine mode the payload shape is:
197197
After a successful command, `twelvedata` checks GitHub releases at most once every 24 hours and prints a one-line hint to **stderr** when a newer version is available:
198198

199199
```
200-
A new version of twelvedata is available: v1.0.1 → v<latest>
200+
A new version of twelvedata is available: v1.0.2 → v<latest>
201201
Run: <upgrade command for your install method>
202202
Disable: TWELVEDATA_NO_UPDATE_NOTIFIER=1
203203
```

internal/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ package version
33
// Version of the twelvedata CLI.
44
// Do not edit — regenerated by the build pipeline.
55
// `var` (not `const`) so goreleaser can override at link time via -ldflags -X.
6-
var Version = "1.0.1"
6+
var Version = "1.0.2"

0 commit comments

Comments
 (0)