Skip to content

Commit

Permalink
Drop support for Ruby 3.0, add 3.3 to matrix, update README
Browse files Browse the repository at this point in the history
  • Loading branch information
cllns committed Jul 3, 2024
1 parent 2cf6e78 commit 2230be2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 15 deletions.
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.3"
- "3.2"
- "3.1"
- "3.0"
env:
CODACY_RUN_LOCAL: true
CODACY_PROJECT_TOKEN: ${{secrets.CODACY_PROJECT_TOKEN}}
Expand Down
18 changes: 5 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,33 +2,25 @@

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

## Version

**This branch contains the code for `hanami-api` 0.3.x.**

## Status

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

## Contact

* Home page: http://hanamirb.org
* Mailing List: http://hanamirb.org/mailing-list
* API Doc: http://rdoc.info/gems/hanami-api
* API Doc: http://rubydoc.info/gems/hanami-api
* Bugs/Issues: https://github.com/hanami/api/issues
* Support: http://stackoverflow.com/questions/tagged/hanami
* Chat: http://chat.hanamirb.org

## Rubies

__Hanami::API__ supports Ruby (MRI) 3.0+

## Installation

__Hanami::API__ supports Ruby (MRI) 3.1+

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

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

## Copyright

Copyright © 2014-2022 Hanami Team – Released under MIT License.
Copyright © 2014–2024 Hanami Team – Released under MIT License.
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 = Gem::Requirement.new(">= 3.0.0")
spec.required_ruby_version = ">= 3.1"

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

Expand Down

0 comments on commit 2230be2

Please sign in to comment.