Skip to content

Commit 2230be2

Browse files
committed
Drop support for Ruby 3.0, add 3.3 to matrix, update README
1 parent 2cf6e78 commit 2230be2

File tree

3 files changed

+7
-15
lines changed

3 files changed

+7
-15
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
fail-fast: false
2323
matrix:
2424
ruby:
25+
- "3.3"
2526
- "3.2"
2627
- "3.1"
27-
- "3.0"
2828
env:
2929
CODACY_RUN_LOCAL: true
3030
CODACY_PROJECT_TOKEN: ${{secrets.CODACY_PROJECT_TOKEN}}

README.md

+5-13
Original file line numberDiff line numberDiff line change
@@ -2,33 +2,25 @@
22

33
Minimal, extremely fast, lightweight Ruby framework for HTTP APIs.
44

5-
## Version
6-
7-
**This branch contains the code for `hanami-api` 0.3.x.**
8-
95
## Status
106

117
[![Gem Version](https://badge.fury.io/rb/hanami-api.svg)](https://badge.fury.io/rb/hanami-api)
12-
[![CI](https://github.com/hanami/api/workflows/ci/badge.svg?branch=main)](https://github.com/hanami/api/actions?query=workflow%3Aci+branch%3Amain)
8+
[![CI](https://github.com/hanami/api/actions/workflows/ci.yml/badge.svg)](https://github.com/hanami/api/actions?query=workflow%3Aci+branch%3Amain)
139
[![Test Coverage](https://codecov.io/gh/hanami/api/branch/main/graph/badge.svg)](https://codecov.io/gh/hanami/api)
1410
[![Depfu](https://badges.depfu.com/badges/a8545fb67cf32a2c75b6227bc0821027/overview.svg)](https://depfu.com/github/hanami/api?project=Bundler)
15-
[![Inline Docs](http://inch-ci.org/github/hanami/api.svg)](http://inch-ci.org/github/hanami/api)
1611

1712
## Contact
1813

1914
* Home page: http://hanamirb.org
2015
* Mailing List: http://hanamirb.org/mailing-list
21-
* API Doc: http://rdoc.info/gems/hanami-api
16+
* API Doc: http://rubydoc.info/gems/hanami-api
2217
* Bugs/Issues: https://github.com/hanami/api/issues
23-
* Support: http://stackoverflow.com/questions/tagged/hanami
2418
* Chat: http://chat.hanamirb.org
2519

26-
## Rubies
27-
28-
__Hanami::API__ supports Ruby (MRI) 3.0+
29-
3020
## Installation
3121

22+
__Hanami::API__ supports Ruby (MRI) 3.1+
23+
3224
Add these lines to your application's `Gemfile`:
3325

3426
```ruby
@@ -680,4 +672,4 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/hanami
680672

681673
## Copyright
682674

683-
Copyright © 2014-2022 Hanami Team – Released under MIT License.
675+
Copyright © 2014–2024 Hanami Team – Released under MIT License.

hanami-api.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
1212
spec.description = "Extremely fast and lightweight HTTP API"
1313
spec.homepage = "http://rubygems.org"
1414
spec.licenses = ["MIT"]
15-
spec.required_ruby_version = Gem::Requirement.new(">= 3.0.0")
15+
spec.required_ruby_version = ">= 3.1"
1616

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

0 commit comments

Comments
 (0)