Skip to content

Commit 2887b22

Browse files
release: 0.2.0
1 parent fd8d531 commit 2887b22

File tree

5 files changed

+34
-4
lines changed

5 files changed

+34
-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.2.0"
33
}

CHANGELOG.md

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

3+
## 0.2.0 (2025-11-04)
4+
5+
Full Changelog: [v0.1.0...v0.2.0](https://github.com/legalesign/legalesign-rest-ruby/compare/v0.1.0...v0.2.0)
6+
7+
### Features
8+
9+
* handle thread interrupts in the core HTTP client ([09fce02](https://github.com/legalesign/legalesign-rest-ruby/commit/09fce02cd46c70e62aaebe3ce5db31265ac07b57))
10+
11+
12+
### Bug Fixes
13+
14+
* absolutely qualified uris should always override the default ([accbe51](https://github.com/legalesign/legalesign-rest-ruby/commit/accbe517d8b7e34580c59f0abca767efb910d9af))
15+
* always send `filename=...` for multipart requests where a file is expected ([5813768](https://github.com/legalesign/legalesign-rest-ruby/commit/5813768c3908da5e30ea445a436b1717fadc0f5b))
16+
* coroutine leaks from connection pool ([6c3463f](https://github.com/legalesign/legalesign-rest-ruby/commit/6c3463f441d4b806ef649968c6e6c8b21b2536cd))
17+
* shorten multipart boundary sep to less than RFC specificed max length ([40b68db](https://github.com/legalesign/legalesign-rest-ruby/commit/40b68dbad30504b67d6b0414f0e3a6db5b744d5f))
18+
* should not reuse buffers for `IO.copy_stream` interop ([a55c302](https://github.com/legalesign/legalesign-rest-ruby/commit/a55c302e8c10ecf93cea0fa83947a5aba26ec2b3))
19+
20+
21+
### Performance Improvements
22+
23+
* faster code formatting ([965c16e](https://github.com/legalesign/legalesign-rest-ruby/commit/965c16efdfe71903a187923892a24a1ace2cede5))
24+
25+
26+
### Chores
27+
28+
* allow fast-format to use bsd sed as well ([7761d66](https://github.com/legalesign/legalesign-rest-ruby/commit/7761d660ef68e49ac02068f322747682ba295fc2))
29+
* bump dependency version and update sorbet types ([fd8d531](https://github.com/legalesign/legalesign-rest-ruby/commit/fd8d5314d47b22b912990c757931a1a4fda8da35))
30+
* ignore linter error for tests having large collections ([6680ab3](https://github.com/legalesign/legalesign-rest-ruby/commit/6680ab334e2a95d5b6b8d14fb1e98d5af4961da4))
31+
* **internal:** codegen related update ([67df45b](https://github.com/legalesign/legalesign-rest-ruby/commit/67df45b7c847eb909ea593e9dd0832efdfdb1923))
32+
333
## 0.1.0 (2025-09-23)
434

535
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.2.0)
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.2.0"
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.2.0"
55
end

0 commit comments

Comments
 (0)