Skip to content

Commit 1a0236a

Browse files
authored
Merge pull request #14 from imagekit-developer/release-please--branches--master--changes--next
release: 2.1.1
2 parents 3535239 + b811879 commit 1a0236a

File tree

11 files changed

+85
-71
lines changed

11 files changed

+85
-71
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
2121

2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v6
2424

2525
- name: Setup go
2626
uses: actions/setup-go@v5
@@ -35,7 +35,7 @@ jobs:
3535
runs-on: ${{ github.repository == 'stainless-sdks/imagekit-go' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
3636
if: github.event_name == 'push' || github.event.pull_request.head.repo.fork
3737
steps:
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v6
3939

4040
- name: Setup go
4141
uses: actions/setup-go@v5

.release-please-manifest.json

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

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 48
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/imagekit-inc%2Fimagekit-c028a7584d3508f268ce5c5b824b50af88eaa140620dd03a1b35f409f510603c.yml
3-
openapi_spec_hash: f9b780b2398a87678a13355e48cd515f
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/imagekit-inc%2Fimagekit-84f0d75048a9268981a84800b4190e3691997ce57dcfc0876f38a5b3fce6bacd.yml
3+
openapi_spec_hash: 35607d4e850c8a60524223ff632c83bb
44
config_hash: aeb6eb949d73382270bbd8bbf2e4cf2a

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## 2.1.1 (2026-01-20)
4+
5+
Full Changelog: [v2.1.0...v2.1.1](https://github.com/imagekit-developer/imagekit-go/compare/v2.1.0...v2.1.1)
6+
7+
### Bug Fixes
8+
9+
* **docs:** add missing pointer prefix to api.md return types ([f3a6f9f](https://github.com/imagekit-developer/imagekit-go/commit/f3a6f9fa69c8d6c41a018fcdd5534f0dbd00b7a9))
10+
* vocab field is required ([b18d890](https://github.com/imagekit-developer/imagekit-go/commit/b18d89015fc6f7eb213c89071fb43582ee98ca17))
11+
12+
13+
### Chores
14+
15+
* **internal:** update `actions/checkout` version ([f0a9fc0](https://github.com/imagekit-developer/imagekit-go/commit/f0a9fc0d1c3e84934e78815169f763b468c22de6))
16+
317
## 2.1.0 (2026-01-16)
418

519
Full Changelog: [v2.0.0...v2.1.0](https://github.com/imagekit-developer/imagekit-go/compare/v2.0.0...v2.1.0)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Or to pin the version:
5959
<!-- x-release-please-start-version -->
6060

6161
```sh
62-
go get -u 'github.com/imagekit-developer/imagekit-go/v2@v2.1.0'
62+
go get -u 'github.com/imagekit-developer/imagekit-go/v2@v2.1.1'
6363
```
6464

6565
<!-- x-release-please-end -->

api.md

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

betav2file_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ func TestBetaV2FileUploadWithOptionalParams(t *testing.T) {
6363
Tasks: []shared.ExtensionAITasksTaskUnionParam{{
6464
OfSelectTags: &shared.ExtensionAITasksTaskSelectTagsParam{
6565
Instruction: "What types of clothing items are visible in this image?",
66-
Vocabulary: []string{"shirt", "tshirt", "dress", "trousers", "jacket"},
6766
MaxSelections: imagekit.Int(1),
6867
MinSelections: imagekit.Int(0),
68+
Vocabulary: []string{"shirt", "tshirt", "dress", "trousers", "jacket"},
6969
},
7070
}, {
7171
OfYesNo: &shared.ExtensionAITasksTaskYesNoParam{

dummy_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ func TestDummyNewWithOptionalParams(t *testing.T) {
8585
Tasks: []shared.ExtensionAITasksTaskUnionParam{{
8686
OfSelectTags: &shared.ExtensionAITasksTaskSelectTagsParam{
8787
Instruction: "What types of clothing items are visible in this image?",
88-
Vocabulary: []string{"shirt", "tshirt", "dress", "trousers", "jacket"},
8988
MaxSelections: imagekit.Int(1),
9089
MinSelections: imagekit.Int(0),
90+
Vocabulary: []string{"shirt", "tshirt", "dress", "trousers", "jacket"},
9191
},
9292
}, {
9393
OfYesNo: &shared.ExtensionAITasksTaskYesNoParam{

file_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ func TestFileUpdateWithOptionalParams(t *testing.T) {
7070
Tasks: []shared.ExtensionAITasksTaskUnionParam{{
7171
OfSelectTags: &shared.ExtensionAITasksTaskSelectTagsParam{
7272
Instruction: "What types of clothing items are visible?",
73-
Vocabulary: []string{"shirt", "dress", "jacket"},
7473
MaxSelections: imagekit.Int(1),
7574
MinSelections: imagekit.Int(0),
75+
Vocabulary: []string{"shirt", "dress", "jacket"},
7676
},
7777
}},
7878
},
@@ -278,9 +278,9 @@ func TestFileUploadWithOptionalParams(t *testing.T) {
278278
Tasks: []shared.ExtensionAITasksTaskUnionParam{{
279279
OfSelectTags: &shared.ExtensionAITasksTaskSelectTagsParam{
280280
Instruction: "What types of clothing items are visible in this image?",
281-
Vocabulary: []string{"shirt", "tshirt", "dress", "trousers", "jacket"},
282281
MaxSelections: imagekit.Int(1),
283282
MinSelections: imagekit.Int(0),
283+
Vocabulary: []string{"shirt", "tshirt", "dress", "trousers", "jacket"},
284284
},
285285
}, {
286286
OfYesNo: &shared.ExtensionAITasksTaskYesNoParam{

internal/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
package internal
44

5-
const PackageVersion = "2.1.0" // x-release-please-version
5+
const PackageVersion = "2.1.1" // x-release-please-version

0 commit comments

Comments
 (0)