Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [6.0.0] - 2024-08-28

### Added

- Add `HTTP.retriable` API (#775)
- Add more granularity to `HTTP::ConnectionError` (#783)
- Cache header normalization to reduce object allocation (#789)

### Changed

- **BREAKING** Handle responses in the reverse order from the requests (#776)
- Drop `base64` gem dependency (#778)

### Removed

- **BREAKING** Drop Ruby 2.x support

[unreleased]: https://github.com/httprb/http/compare/v5.2.0...main
[6.0.0]: https://github.com/httprb/http/compare/v5.2.0...v6.0.0
2 changes: 1 addition & 1 deletion lib/http/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module HTTP
VERSION = "5.2.0"
VERSION = "6.0.0"
end