Skip to content

Commit fe876be

Browse files
release: 0.1.1
1 parent a55c302 commit fe876be

File tree

5 files changed

+27
-4
lines changed

5 files changed

+27
-4
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.1.1"
33
}

CHANGELOG.md

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

3+
## 0.1.1 (2025-10-15)
4+
5+
Full Changelog: [v0.1.0...v0.1.1](https://github.com/legalesign/legalesign-rest-ruby/compare/v0.1.0...v0.1.1)
6+
7+
### Bug Fixes
8+
9+
* always send `filename=...` for multipart requests where a file is expected ([5813768](https://github.com/legalesign/legalesign-rest-ruby/commit/5813768c3908da5e30ea445a436b1717fadc0f5b))
10+
* coroutine leaks from connection pool ([6c3463f](https://github.com/legalesign/legalesign-rest-ruby/commit/6c3463f441d4b806ef649968c6e6c8b21b2536cd))
11+
* shorten multipart boundary sep to less than RFC specificed max length ([40b68db](https://github.com/legalesign/legalesign-rest-ruby/commit/40b68dbad30504b67d6b0414f0e3a6db5b744d5f))
12+
* should not reuse buffers for `IO.copy_stream` interop ([a55c302](https://github.com/legalesign/legalesign-rest-ruby/commit/a55c302e8c10ecf93cea0fa83947a5aba26ec2b3))
13+
14+
15+
### Performance Improvements
16+
17+
* faster code formatting ([965c16e](https://github.com/legalesign/legalesign-rest-ruby/commit/965c16efdfe71903a187923892a24a1ace2cede5))
18+
19+
20+
### Chores
21+
22+
* allow fast-format to use bsd sed as well ([7761d66](https://github.com/legalesign/legalesign-rest-ruby/commit/7761d660ef68e49ac02068f322747682ba295fc2))
23+
* ignore linter error for tests having large collections ([6680ab3](https://github.com/legalesign/legalesign-rest-ruby/commit/6680ab334e2a95d5b6b8d14fb1e98d5af4961da4))
24+
* **internal:** codegen related update ([67df45b](https://github.com/legalesign/legalesign-rest-ruby/commit/67df45b7c847eb909ea593e9dd0832efdfdb1923))
25+
326
## 0.1.0 (2025-09-23)
427

528
Full Changelog: [v0.0.1...v0.1.0](https://github.com/legalesign/legalesign-rest-ruby/compare/v0.0.1...v0.1.0)

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ GIT
1111
PATH
1212
remote: .
1313
specs:
14-
legalesign-sdk (0.1.0)
14+
legalesign-sdk (0.1.1)
1515
connection_pool
1616

1717
GEM

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ To use this gem, install via Bundler by adding the following to your application
1717
<!-- x-release-please-start-version -->
1818

1919
```ruby
20-
gem "legalesign-sdk", "~> 0.1.0"
20+
gem "legalesign-sdk", "~> 0.1.1"
2121
```
2222

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

lib/legalesign_sdk/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module LegalesignSDK
4-
VERSION = "0.1.0"
4+
VERSION = "0.1.1"
55
end

0 commit comments

Comments
 (0)