File tree Expand file tree Collapse file tree 3 files changed +12
-7
lines changed
Expand file tree Collapse file tree 3 files changed +12
-7
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
33module HTTP
4- VERSION = "5.3.0 "
4+ VERSION = "5.3.1 "
55end
You can’t perform that action at this time.
0 commit comments