Skip to content

Commit 254b61a

Browse files
release: 0.1.0-alpha.2 (#14)
* fix: do not call path.Base on ContentType (#13) * chore: go live (#15) * release: 0.1.0-alpha.2 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 75db68e commit 254b61a

File tree

75 files changed

+604
-591
lines changed

Some content is hidden

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

75 files changed

+604
-591
lines changed

Diff for: .release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.0-alpha.1"
2+
".": "0.1.0-alpha.2"
33
}

Diff for: CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## 0.1.0-alpha.2 (2025-02-11)
4+
5+
Full Changelog: [v0.1.0-alpha.1...v0.1.0-alpha.2](https://github.com/gitpod-io/gitpod-sdk-go/compare/v0.1.0-alpha.1...v0.1.0-alpha.2)
6+
7+
### Bug Fixes
8+
9+
* do not call path.Base on ContentType ([#13](https://github.com/gitpod-io/gitpod-sdk-go/issues/13)) ([8901c2e](https://github.com/gitpod-io/gitpod-sdk-go/commit/8901c2e2c7b1e01a388713b7c87a8bae642b4826))
10+
11+
12+
### Chores
13+
14+
* go live ([#15](https://github.com/gitpod-io/gitpod-sdk-go/issues/15)) ([090fe43](https://github.com/gitpod-io/gitpod-sdk-go/commit/090fe43b7c871c25fcb2c4fd33eb21843cc8e646))
15+
316
## 0.1.0-alpha.1 (2025-02-07)
417

518
Full Changelog: [v0.0.1-alpha.0...v0.1.0-alpha.1](https://github.com/gitpod-io/flex-sdk-go/compare/v0.0.1-alpha.0...v0.1.0-alpha.1)

Diff for: CONTRIBUTING.md

+1-1
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/gitpod-io/flex-sdk-go=/path/to/flex-sdk-go
44+
$ go mod edit -replace github.com/gitpod-io/gitpod-sdk-go=/path/to/gitpod-sdk-go
4545
```
4646

4747
## Running tests

Diff for: README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Gitpod Go API Library
22

3-
<a href="https://pkg.go.dev/github.com/gitpod-io/flex-sdk-go"><img src="https://pkg.go.dev/badge/github.com/gitpod-io/flex-sdk-go.svg" alt="Go Reference"></a>
3+
<a href="https://pkg.go.dev/github.com/gitpod-io/gitpod-sdk-go"><img src="https://pkg.go.dev/badge/github.com/gitpod-io/gitpod-sdk-go.svg" alt="Go Reference"></a>
44

55
The Gitpod Go library provides convenient access to [the Gitpod REST
66
API](https://docs.gitpod.com) from applications written in Go. The full API of this library can be found in [api.md](api.md).
@@ -13,7 +13,7 @@ It is generated with [Stainless](https://www.stainlessapi.com/).
1313

1414
```go
1515
import (
16-
"github.com/gitpod-io/flex-sdk-go" // imported as gitpod
16+
"github.com/gitpod-io/gitpod-sdk-go" // imported as gitpod
1717
)
1818
```
1919

@@ -24,7 +24,7 @@ Or to pin the version:
2424
<!-- x-release-please-start-version -->
2525

2626
```sh
27-
go get -u 'github.com/gitpod-io/flex[email protected].1'
27+
go get -u 'github.com/gitpod-io/gitpod[email protected].2'
2828
```
2929

3030
<!-- x-release-please-end -->
@@ -44,8 +44,8 @@ import (
4444
"context"
4545
"fmt"
4646

47-
"github.com/gitpod-io/flex-sdk-go"
48-
"github.com/gitpod-io/flex-sdk-go/option"
47+
"github.com/gitpod-io/gitpod-sdk-go"
48+
"github.com/gitpod-io/gitpod-sdk-go/option"
4949
)
5050

5151
func main() {
@@ -153,7 +153,7 @@ client.Runners.New(context.TODO(), ...,
153153
)
154154
```
155155

156-
See the [full list of request options](https://pkg.go.dev/github.com/gitpod-io/flex-sdk-go/option).
156+
See the [full list of request options](https://pkg.go.dev/github.com/gitpod-io/gitpod-sdk-go/option).
157157

158158
### Pagination
159159

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

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

387-
We are keen for your feedback; please open an [issue](https://www.github.com/gitpod-io/flex-sdk-go/issues) with questions, bugs, or suggestions.
387+
We are keen for your feedback; please open an [issue](https://www.github.com/gitpod-io/gitpod-sdk-go/issues) with questions, bugs, or suggestions.
388388

389389
## Contributing
390390

Diff for: account.go

+7-7
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ import (
88
"net/url"
99
"time"
1010

11-
"github.com/gitpod-io/flex-sdk-go/internal/apijson"
12-
"github.com/gitpod-io/flex-sdk-go/internal/apiquery"
13-
"github.com/gitpod-io/flex-sdk-go/internal/param"
14-
"github.com/gitpod-io/flex-sdk-go/internal/requestconfig"
15-
"github.com/gitpod-io/flex-sdk-go/option"
16-
"github.com/gitpod-io/flex-sdk-go/packages/pagination"
17-
"github.com/gitpod-io/flex-sdk-go/shared"
11+
"github.com/gitpod-io/gitpod-sdk-go/internal/apijson"
12+
"github.com/gitpod-io/gitpod-sdk-go/internal/apiquery"
13+
"github.com/gitpod-io/gitpod-sdk-go/internal/param"
14+
"github.com/gitpod-io/gitpod-sdk-go/internal/requestconfig"
15+
"github.com/gitpod-io/gitpod-sdk-go/option"
16+
"github.com/gitpod-io/gitpod-sdk-go/packages/pagination"
17+
"github.com/gitpod-io/gitpod-sdk-go/shared"
1818
)
1919

2020
// AccountService contains methods and other services that help with interacting

Diff for: account_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"os"
99
"testing"
1010

11-
"github.com/gitpod-io/flex-sdk-go"
12-
"github.com/gitpod-io/flex-sdk-go/internal/testutil"
13-
"github.com/gitpod-io/flex-sdk-go/option"
11+
"github.com/gitpod-io/gitpod-sdk-go"
12+
"github.com/gitpod-io/gitpod-sdk-go/internal/testutil"
13+
"github.com/gitpod-io/gitpod-sdk-go/option"
1414
)
1515

1616
func TestAccountGetWithOptionalParams(t *testing.T) {

Diff for: aliases.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
package gitpod
44

55
import (
6-
"github.com/gitpod-io/flex-sdk-go/internal/apierror"
7-
"github.com/gitpod-io/flex-sdk-go/shared"
6+
"github.com/gitpod-io/gitpod-sdk-go/internal/apierror"
7+
"github.com/gitpod-io/gitpod-sdk-go/shared"
88
)
99

1010
type Error = apierror.Error

0 commit comments

Comments
 (0)