Skip to content

Commit 01751dc

Browse files
authored
Merge pull request #1 from context-dot-dev/release-please--branches--main--changes--next
release: 0.0.2
2 parents e89b37b + 7c4684e commit 01751dc

22 files changed

Lines changed: 47 additions & 33 deletions

.github/workflows/release-doctor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
release_doctor:
1010
name: release doctor
1111
runs-on: ubuntu-latest
12-
if: github.repository == 'stainless-sdks/context.dev-cli' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')
12+
if: github.repository == 'context-dot-dev/context-dev-cli' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')
1313

1414
steps:
1515
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.0.1"
2+
".": "0.0.2"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 25
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/context-dev/context.dev-0253523aec437a0e9c67c3386fa25ed52ebbcc0073c907f0aa3586d8010d2e9d.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/context-dev/context.dev-508b6e971e1d1da37221163ee6625a7f348c96a0ddbf1ea2a8dc17b6cdfb74c3.yml
33
openapi_spec_hash: 5cf86ed865b01dfe3a159a45315ebb49
4-
config_hash: 2b6e4424b446fe1bf93359ba758c83ed
4+
config_hash: eebf67a9c2ccfe2641980c154d7a698e

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Changelog
2+
3+
## 0.0.2 (2026-06-11)
4+
5+
Full Changelog: [v0.0.1...v0.0.2](https://github.com/context-dot-dev/context-dev-cli/compare/v0.0.1...v0.0.2)
6+
7+
### Chores
8+
9+
* configure new SDK language ([e89b37b](https://github.com/context-dot-dev/context-dev-cli/commit/e89b37b1061f3d846832b13852a6a4117c49910b))
10+
* update SDK settings ([2cb5f95](https://github.com/context-dot-dev/context-dev-cli/commit/2cb5f95e56c35f5bf415999f877917625025e7ef))

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,16 @@ The official CLI for the [Context Dev REST API](https://docs.context.dev/).
44

55
It is generated with [Stainless](https://www.stainless.com/).
66

7+
<!-- x-release-please-start-version -->
8+
79
## Installation
810

911
### Installing with Go
1012

1113
To test or install the CLI locally, you need [Go](https://go.dev/doc/install) version 1.22 or later installed.
1214

1315
```sh
14-
go install 'github.com/stainless-sdks/context.dev-cli/cmd/context-dev@latest'
16+
go install 'github.com/context-dot-dev/context-dev-cli/cmd/context-dev@latest'
1517
```
1618

1719
Once you have run `go install`, the binary is placed in your Go bin directory:
@@ -26,6 +28,8 @@ If commands aren't found after installation, add the Go bin directory to your PA
2628
export PATH="$PATH:$(go env GOPATH)/bin"
2729
```
2830

31+
<!-- x-release-please-end -->
32+
2933
### Running Locally
3034

3135
After cloning the git repository for this project, you can use the

cmd/context-dev/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010
"os"
1111
"slices"
1212

13+
"github.com/context-dot-dev/context-dev-cli/pkg/cmd"
1314
"github.com/context-dot-dev/context-go-sdk"
14-
"github.com/stainless-sdks/context.dev-cli/pkg/cmd"
1515
"github.com/tidwall/gjson"
1616
"github.com/urfave/cli/v3"
1717
)

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/stainless-sdks/context.dev-cli
1+
module github.com/context-dot-dev/context-dev-cli
22

33
go 1.25
44

pkg/cmd/ai.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ import (
66
"context"
77
"fmt"
88

9+
"github.com/context-dot-dev/context-dev-cli/internal/apiquery"
10+
"github.com/context-dot-dev/context-dev-cli/internal/requestflag"
911
"github.com/context-dot-dev/context-go-sdk"
1012
"github.com/context-dot-dev/context-go-sdk/option"
11-
"github.com/stainless-sdks/context.dev-cli/internal/apiquery"
12-
"github.com/stainless-sdks/context.dev-cli/internal/requestflag"
1313
"github.com/tidwall/gjson"
1414
"github.com/urfave/cli/v3"
1515
)

pkg/cmd/ai_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ package cmd
55
import (
66
"testing"
77

8-
"github.com/stainless-sdks/context.dev-cli/internal/mocktest"
9-
"github.com/stainless-sdks/context.dev-cli/internal/requestflag"
8+
"github.com/context-dot-dev/context-dev-cli/internal/mocktest"
9+
"github.com/context-dot-dev/context-dev-cli/internal/requestflag"
1010
)
1111

1212
func TestAIAIQuery(t *testing.T) {

pkg/cmd/brand.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ import (
66
"context"
77
"fmt"
88

9+
"github.com/context-dot-dev/context-dev-cli/internal/apiquery"
10+
"github.com/context-dot-dev/context-dev-cli/internal/requestflag"
911
"github.com/context-dot-dev/context-go-sdk"
1012
"github.com/context-dot-dev/context-go-sdk/option"
11-
"github.com/stainless-sdks/context.dev-cli/internal/apiquery"
12-
"github.com/stainless-sdks/context.dev-cli/internal/requestflag"
1313
"github.com/tidwall/gjson"
1414
"github.com/urfave/cli/v3"
1515
)

0 commit comments

Comments
 (0)