Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
fail-fast: false
matrix:
ruby:
- "3.4"
- "3.3"
- "3.2"
- "3.1"
steps:
- uses: actions/checkout@v1
- name: Install package dependencies
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Hanami::API
Minimal, extremely fast, lightweight Ruby framework for HTTP APIs.

## [Unreleased]

### Added

- [Sean Collins] Official support for Ruby 3.3 & 3.4
- [Sean Collins] Drop support for Ruby 3.1

## v0.3.0 - 2022-12-25

### Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Minimal, extremely fast, lightweight Ruby framework for HTTP APIs.

## Installation

__Hanami::API__ supports Ruby (MRI) 3.1+
__Hanami::API__ supports Ruby (MRI) 3.2+

Add these lines to your application's `Gemfile`:

Expand Down
2 changes: 1 addition & 1 deletion hanami-api.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
spec.description = "Extremely fast and lightweight HTTP API"
spec.homepage = "http://rubygems.org"
spec.licenses = ["MIT"]
spec.required_ruby_version = ">= 3.1"
spec.required_ruby_version = ">= 3.2"

spec.metadata["allowed_push_host"] = "https://rubygems.org"

Expand Down