Skip to content

Commit 23e5235

Browse files
authored
Merge pull request #3 from Vitable-Inc/release-please--branches--main--changes--next
release: 0.2.1
2 parents ab41a50 + 762a260 commit 23e5235

7 files changed

Lines changed: 19 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ jobs:
2424
runs-on: ${{ github.repository == 'stainless-sdks/vitable-connect-ruby' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }}
2525
if: |-
2626
github.repository == 'stainless-sdks/vitable-connect-ruby' &&
27-
(github.event_name == 'push' || github.event.pull_request.head.repo.fork) &&
28-
(github.event_name != 'push' || github.event.head_commit.message != 'codegen metadata')
27+
(github.event_name == 'push' || github.event.pull_request.head.repo.fork) && (github.event_name != 'push' || github.event.head_commit.message != 'codegen metadata')
2928
steps:
3029
- uses: actions/checkout@v6
3130
- name: Set up Ruby

.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.2.0"
2+
".": "0.2.1"
33
}

CHANGELOG.md

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

3+
## 0.2.1 (2026-03-28)
4+
5+
Full Changelog: [v0.2.0...v0.2.1](https://github.com/Vitable-Inc/vitable-connect-ruby/compare/v0.2.0...v0.2.1)
6+
7+
### Bug Fixes
8+
9+
* **internal:** correct multipart form field name encoding ([f7a59c7](https://github.com/Vitable-Inc/vitable-connect-ruby/commit/f7a59c7c92beba61c6b100dc2addbd21caec3fe2))
10+
11+
12+
### Chores
13+
14+
* **ci:** support opting out of skipping builds on metadata-only commits ([03e02f9](https://github.com/Vitable-Inc/vitable-connect-ruby/commit/03e02f904a0e295fc0649474366d2b13ac5cc891))
15+
316
## 0.2.0 (2026-03-25)
417

518
Full Changelog: [v0.1.0...v0.2.0](https://github.com/Vitable-Inc/vitable-connect-ruby/compare/v0.1.0...v0.2.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-
vitable-connect (0.2.0)
14+
vitable-connect (0.2.1)
1515
cgi
1616
connection_pool
1717

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 "vitable-connect", "~> 0.2.0"
20+
gem "vitable-connect", "~> 0.2.1"
2121
```
2222

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

lib/vitable_connect/internal/util.rb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -571,8 +571,7 @@ def encode_query_params(query)
571571
y << "Content-Disposition: form-data"
572572

573573
unless key.nil?
574-
name = ERB::Util.url_encode(key.to_s)
575-
y << "; name=\"#{name}\""
574+
y << "; name=\"#{key}\""
576575
end
577576

578577
case val

lib/vitable_connect/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 VitableConnect
4-
VERSION = "0.2.0"
4+
VERSION = "0.2.1"
55
end

0 commit comments

Comments
 (0)