Skip to content

Commit

Permalink
Merge pull request #58 from OneBusAway/release-please--branches--main…
Browse files Browse the repository at this point in the history
…--changes--next

release: 0.1.0-alpha.20
  • Loading branch information
Ahmedhossamdev authored Feb 11, 2025
2 parents 5565547 + 796c89d commit 91491f5
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.1.0-alpha.19"
".": "0.1.0-alpha.20"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.1.0-alpha.20 (2025-02-11)

Full Changelog: [v0.1.0-alpha.19...v0.1.0-alpha.20](https://github.com/OneBusAway/go-sdk/compare/v0.1.0-alpha.19...v0.1.0-alpha.20)

### Bug Fixes

* do not call path.Base on ContentType ([#57](https://github.com/OneBusAway/go-sdk/issues/57)) ([82c787d](https://github.com/OneBusAway/go-sdk/commit/82c787de2108dfdb18a50482d927860336e3f285))

## 0.1.0-alpha.19 (2025-02-07)

Full Changelog: [v0.1.0-alpha.18...v0.1.0-alpha.19](https://github.com/OneBusAway/go-sdk/compare/v0.1.0-alpha.18...v0.1.0-alpha.19)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Or to pin the version:
<!-- x-release-please-start-version -->

```sh
go get -u 'github.com/OneBusAway/go-sdk@v0.1.0-alpha.19'
go get -u 'github.com/OneBusAway/go-sdk@v0.1.0-alpha.20'
```

<!-- x-release-please-end -->
Expand Down
2 changes: 1 addition & 1 deletion internal/apiform/encoder.go
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ func (e *encoder) newReaderTypeEncoder() encoderFunc {
filename = path.Base(named.Name())
}
if typed, ok := reader.(interface{ ContentType() string }); ok {
contentType = path.Base(typed.ContentType())
contentType = typed.ContentType()
}

// Below is taken almost 1-for-1 from [multipart.CreateFormFile]
Expand Down
2 changes: 1 addition & 1 deletion internal/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

package internal

const PackageVersion = "0.1.0-alpha.19" // x-release-please-version
const PackageVersion = "0.1.0-alpha.20" // x-release-please-version

0 comments on commit 91491f5

Please sign in to comment.