Skip to content

Commit 36a8d72

Browse files
committed
Release v5.3.1
Reverts: cd32721
1 parent 2900e33 commit 36a8d72

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
11+
## [5.3.1] - 2025-06-09
12+
13+
### Changed
14+
15+
- Revert switch to the native llhttp on MRI, as it's not compatible with
16+
standalone bundles
17+
([#802](https://github.com/httprb/http/issues/802))
18+
19+
1020
## [5.3.0] - 2025-06-09
1121

1222
### Added

http.gemspec

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,7 @@ Gem::Specification.new do |gem|
3131
gem.add_runtime_dependency "http-cookie", "~> 1.0"
3232
gem.add_runtime_dependency "http-form_data", "~> 2.2"
3333

34-
# Use native llhttp for MRI (more performant) and llhttp-ffi for other interpreters (better compatibility)
35-
if RUBY_ENGINE == "ruby"
36-
gem.add_runtime_dependency "llhttp", "~> 0.5.0"
37-
else
38-
gem.add_runtime_dependency "llhttp-ffi", "~> 0.5.0"
39-
end
34+
gem.add_runtime_dependency "llhttp-ffi", "~> 0.5.0"
4035

4136
gem.add_development_dependency "bundler", "~> 2.0"
4237

lib/http/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 HTTP
4-
VERSION = "5.3.0"
4+
VERSION = "5.3.1"
55
end

0 commit comments

Comments
 (0)