Skip to content

Commit 271e081

Browse files
authored
Merge pull request #1 from logchimp/release-please--branches--main--changes--next
release: 0.0.2
2 parents 9eecc61 + a1a6657 commit 271e081

57 files changed

Lines changed: 244 additions & 156 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.release-please-manifest.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
".": "0.0.2"
3+
}

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 16
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/logchimp%2Flogchimp-5aa09cb8db39089d92b1cefa8fc7326a971c48626d042e2b181bb1e3163dffc3.yml
33
openapi_spec_hash: c2071fd66a33e814f743c21d544b9d02
4-
config_hash: 9c0ca161e3bad852d9b76b1264773e0b
4+
config_hash: c9c27b5e3b26591a11df060e31167977

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 (2025-10-10)
4+
5+
Full Changelog: [v0.0.1...v0.0.2](https://github.com/logchimp/logchimp-go/compare/v0.0.1...v0.0.2)
6+
7+
### Chores
8+
9+
* configure new SDK language ([c895b50](https://github.com/logchimp/logchimp-go/commit/c895b50726c47500eafb401eaaba11ef6bae5c9c))
10+
* update SDK settings ([2ca5657](https://github.com/logchimp/logchimp-go/commit/2ca56578e5a266916ea915edbaf90b9f8d392eff))

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ To use a local version of this library from source in another project, edit the
4141
directive. This can be done through the CLI with the following:
4242

4343
```sh
44-
$ go mod edit -replace github.com/stainless-sdks/logchimp-go=/path/to/logchimp-go
44+
$ go mod edit -replace github.com/logchimp/logchimp-go=/path/to/logchimp-go
4545
```
4646

4747
## Running tests

README.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<!-- x-release-please-start-version -->
44

5-
<a href="https://pkg.go.dev/github.com/stainless-sdks/logchimp-go"><img src="https://pkg.go.dev/badge/github.com/stainless-sdks/logchimp-go.svg" alt="Go Reference"></a>
5+
<a href="https://pkg.go.dev/github.com/logchimp/logchimp-go"><img src="https://pkg.go.dev/badge/github.com/logchimp/logchimp-go.svg" alt="Go Reference"></a>
66

77
<!-- x-release-please-end -->
88

@@ -13,18 +13,26 @@ It is generated with [Stainless](https://www.stainless.com/).
1313

1414
## Installation
1515

16+
<!-- x-release-please-start-version -->
17+
1618
```go
1719
import (
18-
"github.com/stainless-sdks/logchimp-go" // imported as logchimp
20+
"github.com/logchimp/logchimp-go" // imported as logchimp
1921
)
2022
```
2123

24+
<!-- x-release-please-end -->
25+
2226
Or to pin the version:
2327

28+
<!-- x-release-please-start-version -->
29+
2430
```sh
25-
go get -u 'github.com/stainless-sdks/logchimp-go@v0.0.1'
31+
go get -u 'github.com/logchimp/logchimp-go@v0.0.2'
2632
```
2733

34+
<!-- x-release-please-end -->
35+
2836
## Requirements
2937

3038
This library requires Go 1.22+.
@@ -40,8 +48,8 @@ import (
4048
"context"
4149
"fmt"
4250

43-
"github.com/stainless-sdks/logchimp-go"
44-
"github.com/stainless-sdks/logchimp-go/option"
51+
"github.com/logchimp/logchimp-go"
52+
"github.com/logchimp/logchimp-go/option"
4553
)
4654

4755
func main() {
@@ -271,7 +279,7 @@ client.Auth.Login(context.TODO(), ...,
271279

272280
The request option `option.WithDebugLog(nil)` may be helpful while debugging.
273281

274-
See the [full list of request options](https://pkg.go.dev/github.com/stainless-sdks/logchimp-go/option).
282+
See the [full list of request options](https://pkg.go.dev/github.com/logchimp/logchimp-go/option).
275283

276284
### Pagination
277285

@@ -489,7 +497,7 @@ This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) con
489497

490498
We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
491499

492-
We are keen for your feedback; please open an [issue](https://www.github.com/stainless-sdks/logchimp-go/issues) with questions, bugs, or suggestions.
500+
We are keen for your feedback; please open an [issue](https://www.github.com/logchimp/logchimp-go/issues) with questions, bugs, or suggestions.
493501

494502
## Contributing
495503

aliases.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
package logchimp
44

55
import (
6-
"github.com/stainless-sdks/logchimp-go/internal/apierror"
7-
"github.com/stainless-sdks/logchimp-go/packages/param"
6+
"github.com/logchimp/logchimp-go/internal/apierror"
7+
"github.com/logchimp/logchimp-go/packages/param"
88
)
99

1010
// aliased to make [param.APIUnion] private when embedding

api.md

Lines changed: 37 additions & 37 deletions
Large diffs are not rendered by default.

auth.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ import (
77
"net/http"
88
"slices"
99

10-
"github.com/stainless-sdks/logchimp-go/internal/apijson"
11-
"github.com/stainless-sdks/logchimp-go/internal/requestconfig"
12-
"github.com/stainless-sdks/logchimp-go/option"
13-
"github.com/stainless-sdks/logchimp-go/packages/param"
14-
"github.com/stainless-sdks/logchimp-go/packages/respjson"
10+
"github.com/logchimp/logchimp-go/internal/apijson"
11+
"github.com/logchimp/logchimp-go/internal/requestconfig"
12+
"github.com/logchimp/logchimp-go/option"
13+
"github.com/logchimp/logchimp-go/packages/param"
14+
"github.com/logchimp/logchimp-go/packages/respjson"
1515
)
1616

1717
// AuthService contains methods and other services that help with interacting with

auth_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"os"
99
"testing"
1010

11-
"github.com/stainless-sdks/logchimp-go"
12-
"github.com/stainless-sdks/logchimp-go/internal/testutil"
13-
"github.com/stainless-sdks/logchimp-go/option"
11+
"github.com/logchimp/logchimp-go"
12+
"github.com/logchimp/logchimp-go/internal/testutil"
13+
"github.com/logchimp/logchimp-go/option"
1414
)
1515

1616
func TestAuthLogin(t *testing.T) {

authemail.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ import (
77
"net/http"
88
"slices"
99

10-
"github.com/stainless-sdks/logchimp-go/internal/apijson"
11-
"github.com/stainless-sdks/logchimp-go/internal/requestconfig"
12-
"github.com/stainless-sdks/logchimp-go/option"
13-
"github.com/stainless-sdks/logchimp-go/packages/respjson"
10+
"github.com/logchimp/logchimp-go/internal/apijson"
11+
"github.com/logchimp/logchimp-go/internal/requestconfig"
12+
"github.com/logchimp/logchimp-go/option"
13+
"github.com/logchimp/logchimp-go/packages/respjson"
1414
)
1515

1616
// AuthEmailService contains methods and other services that help with interacting

0 commit comments

Comments
 (0)