hanami-router 2.1.0 → 2.2.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bd15cdabe88259102767109851f7eb4253c52fbdd8a77fff7e3e53512953866c
4
- data.tar.gz: ca5c14f2abe932cda82da4ebacfe569e8acdfbce915d33e89201dd3af52fd044
3
+ metadata.gz: 28c7b9e18ec6d45c9e7fd2d9cedbc4ca44eb2077829baedb18ed471d1147d162
4
+ data.tar.gz: c607b74ef445960c5619593616cbf937954cc8860f724a46e15e4759d0aa8c3d
5
5
  SHA512:
6
- metadata.gz: 1b8dba8cd1f1a178b84a8222b0f0d671a87c0e8e58332022c4480a850a2b3daf3e1d9a0915299d0ee8249d016610a088c8ee7049d0bb93fbefb25e74586d6dbc
7
- data.tar.gz: 1eca7bf5c3e7928f9d5400a87fa9d9089f43312f4d89684c5137c082469c31aeea5cd8f910fea9c08cc58a8cc01d2a659feee0a0c62593ccca1ba1854d70d6c8
6
+ metadata.gz: 50c7ba9aa1b9feb3320dfcfb85d5e9e8cc91820df0ec004f93919b5aa916f6fb6dfafb5fc7cb2261433eb7c41ffe7e4864938c8186d6451e737bcac434fd386d
7
+ data.tar.gz: e9151a70ca2545538ef23524a760355dd80fa0ca76b25cf1666504da3689475824c7289727d4f9c47aff2b5b3046821be18396d53929d493db69f382ab785886
data/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  Rack compatible HTTP router for Ruby
4
4
 
5
+ ## v2.2.0.beta1 - 2024-07-16
6
+
7
+ ### Changed
8
+
9
+ - Drop support for Ruby 3.0
10
+
5
11
  ## v2.1.0 - 2024-02-27
6
12
 
7
13
  ### Fixed
data/README.md CHANGED
@@ -1,35 +1,27 @@
1
1
  # Hanami::Router
2
2
 
3
- Rack compatible, lightweight and fast HTTP Router for Ruby and [Hanami](http://hanamirb.org).
4
-
5
- ## Version
6
-
7
- **This branch contains the code for `hanami-router` 2.x.**
3
+ Rack compatible, lightweight, and fast HTTP Router for Ruby and [Hanami](http://hanamirb.org).
8
4
 
9
5
  ## Status
10
6
 
11
7
  [![Gem Version](https://badge.fury.io/rb/hanami-router.svg)](https://badge.fury.io/rb/hanami-router)
12
- [![CI](https://github.com/hanami/router/workflows/ci/badge.svg?branch=main)](https://github.com/hanami/router/actions?query=workflow%3Aci+branch%3Amain)
8
+ [![CI](https://github.com/hanami/router/actions/workflows/ci.yml/badge.svg)](https://github.com/hanami/router/actions?query=workflow%3Aci+branch%3Amain)
13
9
  [![Test Coverage](https://codecov.io/gh/hanami/router/branch/main/graph/badge.svg)](https://codecov.io/gh/hanami/router)
14
10
  [![Depfu](https://badges.depfu.com/badges/5f6b8e8fa3b0d082539f0b0f84d55960/overview.svg)](https://depfu.com/github/hanami/router?project=Bundler)
15
- [![Inline Docs](http://inch-ci.org/github/hanami/router.svg)](http://inch-ci.org/github/hanami/router)
16
11
 
17
12
  ## Contact
18
13
 
19
14
  * Home page: http://hanamirb.org
20
15
  * Mailing List: http://hanamirb.org/mailing-list
21
- * API Doc: http://rdoc.info/gems/hanami-router
16
+ * API Doc: http://rubydoc.info/gems/hanami-router
22
17
  * Bugs/Issues: https://github.com/hanami/router/issues
23
- * Support: http://stackoverflow.com/questions/tagged/hanami
24
18
  * Chat: http://chat.hanamirb.org
25
19
 
26
- ## Rubies
27
-
28
- __Hanami::Router__ supports Ruby (MRI) 3.0+
29
-
30
20
 
31
21
  ## Installation
32
22
 
23
+ __Hanami::Router__ supports Ruby (MRI) 3.1.+
24
+
33
25
  Add this line to your application's Gemfile:
34
26
 
35
27
  ```ruby
@@ -365,4 +357,4 @@ __Hanami::Router__ uses [Semantic Versioning 2.0.0](http://semver.org)
365
357
 
366
358
  ## Copyright
367
359
 
368
- Copyright © 2014 Hanami Team – Released under MIT License
360
+ Copyright © 2014–2024 Hanami Team – Released under MIT License
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
18
18
  spec.executables = []
19
19
  spec.require_paths = ["lib"]
20
20
  spec.metadata["rubygems_mfa_required"] = "true"
21
- spec.required_ruby_version = ">= 3.0"
21
+ spec.required_ruby_version = ">= 3.1"
22
22
 
23
23
  spec.add_dependency "rack", "~> 2.0"
24
24
  spec.add_dependency "mustermann", "~> 3.0"
@@ -8,6 +8,6 @@ module Hanami
8
8
  #
9
9
  # @since 0.1.0
10
10
  # @api public
11
- VERSION = "2.1.0"
11
+ VERSION = "2.2.0.beta1"
12
12
  end
13
13
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hanami-router
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 2.2.0.beta1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luca Guidi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-27 00:00:00.000000000 Z
11
+ date: 2024-07-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rack
@@ -195,14 +195,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
195
195
  requirements:
196
196
  - - ">="
197
197
  - !ruby/object:Gem::Version
198
- version: '3.0'
198
+ version: '3.1'
199
199
  required_rubygems_version: !ruby/object:Gem::Requirement
200
200
  requirements:
201
201
  - - ">="
202
202
  - !ruby/object:Gem::Version
203
203
  version: '0'
204
204
  requirements: []
205
- rubygems_version: 3.5.6
205
+ rubygems_version: 3.5.9
206
206
  signing_key:
207
207
  specification_version: 4
208
208
  summary: Rack compatible HTTP router for Ruby and Hanami