Skip to content

Commit 2d751b4

Browse files
release: 0.2.0
1 parent 782c77d commit 2d751b4

File tree

4 files changed

+39
-3
lines changed

4 files changed

+39
-3
lines changed

.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.1.0"
2+
".": "0.2.0"
33
}

CHANGELOG.md

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

3+
## 0.2.0 (2026-01-23)
4+
5+
Full Changelog: [v0.1.0...v0.2.0](https://github.com/beeper/desktop-api-go/compare/v0.1.0...v0.2.0)
6+
7+
### Features
8+
9+
* **api:** add `description` field to chats, make `title` optional ([fbf0470](https://github.com/beeper/desktop-api-go/commit/fbf047029f11c57542963ed3446ab191ae738643))
10+
* **api:** add upload asset and edit message endpoints ([6d37bf4](https://github.com/beeper/desktop-api-go/commit/6d37bf45aeaeef173628d7bd16ecb5fcfe49ca1e))
11+
* **api:** manual updates ([782c77d](https://github.com/beeper/desktop-api-go/commit/782c77d0de3e076765031d3b311c81f55a82b02b))
12+
* **encoder:** support bracket encoding form-data object members ([a338742](https://github.com/beeper/desktop-api-go/commit/a33874294b78dc962f1acf74668ab59697d61711))
13+
14+
15+
### Bug Fixes
16+
17+
* **client:** correctly specify Accept header with */* instead of empty ([2bcd6c1](https://github.com/beeper/desktop-api-go/commit/2bcd6c1aaaf2b7e6e554d8a87743d2593856f678))
18+
* **docs:** add missing pointer prefix to api.md return types ([9fd334b](https://github.com/beeper/desktop-api-go/commit/9fd334be8ea4e83d5414c7d044cd326643137685))
19+
* **mcp:** correct code tool API endpoint ([568939e](https://github.com/beeper/desktop-api-go/commit/568939eff6ad5bcdcd42d7bae3439af3389e4b8a))
20+
* rename param to avoid collision ([d304cbe](https://github.com/beeper/desktop-api-go/commit/d304cbe9e74f9486567156cb28a60cf7cee5b053))
21+
22+
23+
### Chores
24+
25+
* add float64 to valid types for RegisterFieldValidator ([4658d5c](https://github.com/beeper/desktop-api-go/commit/4658d5c7d11ff703a1b7e5ccfb594b22f2ee5144))
26+
* bump gjson version ([1194594](https://github.com/beeper/desktop-api-go/commit/1194594b4e0744f59f66e0cda1929e75eb8973a2))
27+
* configure new SDK language ([ebb892c](https://github.com/beeper/desktop-api-go/commit/ebb892cd8a5b4bad877c0b88724a9a55f43dac94))
28+
* elide duplicate aliases ([fa3d456](https://github.com/beeper/desktop-api-go/commit/fa3d4564c46606bcb63fd98906eb0687758ac059))
29+
* **internal:** codegen related update ([f2d3a30](https://github.com/beeper/desktop-api-go/commit/f2d3a30447ffaae00b456f610aba7afee08d32f0))
30+
* **internal:** codegen related update ([77a6d60](https://github.com/beeper/desktop-api-go/commit/77a6d605f55019d31fba8ed59ddc5232f527f9ff))
31+
* **internal:** grammar fix (it's -> its) ([60171f3](https://github.com/beeper/desktop-api-go/commit/60171f3c6eed029a5689bc8ac58656baf63d88f3))
32+
* **internal:** update `actions/checkout` version ([1f84ff0](https://github.com/beeper/desktop-api-go/commit/1f84ff0e78592fb0b97fb1185dbe049a298af53d))
33+
34+
35+
### Documentation
36+
37+
* prominently feature MCP server setup in root SDK readmes ([fcad6f3](https://github.com/beeper/desktop-api-go/commit/fcad6f33198927cfd1e144648a38fb43b1d43f06))
38+
339
## 0.1.0 (2025-10-16)
440

541
Full Changelog: [v0.0.1...v0.1.0](https://github.com/beeper/desktop-api-go/compare/v0.0.1...v0.1.0)

README.md

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

3737
```sh
38-
go get -u 'github.com/beeper/desktop-api-go@v0.1.0'
38+
go get -u 'github.com/beeper/desktop-api-go@v0.2.0'
3939
```
4040

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

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 = "0.1.0" // x-release-please-version
5+
const PackageVersion = "0.2.0" // x-release-please-version

0 commit comments

Comments
 (0)