Skip to content

Commit bce18e7

Browse files
committed
Bump version to 1.0.7
1 parent 9bc78a6 commit bce18e7

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

.goreleaser.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ release:
128128
# brew invokes it for completion generation.
129129
brews:
130130
- name: twelvedata
131+
directory: Formula
131132
repository:
132133
owner: twelvedata
133134
name: homebrew-cli

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Every Twelve Data API endpoint is exposed as a subcommand with predictable flags
3737
curl -fsSL https://raw.githubusercontent.com/twelvedata/twelvedata-cli/main/install.sh | bash
3838
```
3939

40-
Pin a specific version: append `-s v1.0.6`. Override the install location with `TWELVEDATA_INSTALL=<dir>` (default `~/.twelvedata`).
40+
Pin a specific version: append `-s v1.0.7`. Override the install location with `TWELVEDATA_INSTALL=<dir>` (default `~/.twelvedata`).
4141

4242
### Homebrew (macOS / Linux)
4343

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

56-
Pin a specific version: `$env:TWELVEDATA_VERSION = 'v1.0.6'` before piping. Override the install location with `$env:TWELVEDATA_INSTALL`.
56+
Pin a specific version: `$env:TWELVEDATA_VERSION = 'v1.0.7'` before piping. Override the install location with `$env:TWELVEDATA_INSTALL`.
5757

5858
### Go
5959

6060
```sh
61-
go install github.com/twelvedata/twelvedata-cli/cmd/twelvedata@v1.0.6
61+
go install github.com/twelvedata/twelvedata-cli/cmd/twelvedata@v1.0.7
6262
```
6363

6464
### Prebuilt binaries
@@ -236,7 +236,7 @@ In machine mode the payload shape is:
236236
{
237237
"ok": true,
238238
"checks": [
239-
{ "name": "CLI Version", "status": "pass", "message": "v1.0.6 (latest)" },
239+
{ "name": "CLI Version", "status": "pass", "message": "v1.0.7 (latest)" },
240240
{ "name": "API Key", "status": "pass", "message": "abc...wxyz (source: secure storage, profile: default)" },
241241
{ "name": "Credential Storage", "status": "pass", "message": "Secret Service (libsecret)" },
242242
{ "name": "API Validation", "status": "pass", "message": "API key accepted" }

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.6"
6+
var Version = "1.0.7"

0 commit comments

Comments
 (0)