hanami-controller 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: 71540b6c6d2039d86c11f8787fa8cee1996ea62b7100a9749028e53f3ecd6332
4
- data.tar.gz: cacf4689c118e55e769ef7132d346e73596fc296103596c34b66e2963a22b84d
3
+ metadata.gz: 97114bc3e9ab406fe26bc05b1022f79b9f1bcf1bcbf23b84cecffa6bdb306ec4
4
+ data.tar.gz: 8016185016dab18fda2fc40c028572240d000d09c2d1e37197430b46ab2a0e71
5
5
  SHA512:
6
- metadata.gz: e52f5f09a47fc25cf6928d22da936572fb948333f457564a2eccf3ba6022f7bc18db301667b2aa2e8d0337f04cc50ea0c7d0b34be9008434fbc8958579aab595
7
- data.tar.gz: 62cbc1dd0ce6dd7375de6db60f864acf1dc71cee765d4024307f70a8a798e19fe5d6eb135e231e49657b3f47444d0b8cc26fa68135cdfbb9bed797b9ab780121
6
+ metadata.gz: 44991c54305b783db097a835e63385ab09b8a62a8e90032a59eb8c456a72ffcd0169d155bf0070ed3409da75ff4748801e1aef71b353c1c5c25d6a92739a5d03
7
+ data.tar.gz: 1c0e08f6390616ac3f811b701cc2cd7d1365d64d182a0e6e73c506842acb248724126ef38b4582e7d028404fae13c16a6493eae720f931f0bc758682d5d5a26b
data/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  Complete, fast and testable actions for Rack
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
  ## v2.1.0.rc3 - 2024-02-16
data/README.md CHANGED
@@ -1,18 +1,13 @@
1
1
  # Hanami::Controller
2
2
 
3
- Complete, fast and testable actions for Rack and [Hanami](http://hanamirb.org)
4
-
5
- ## Version
6
-
7
- **This branch contains the code for `hanami-controller` 2.x.**
3
+ Complete, fast, and testable actions for Rack and [Hanami](http://hanamirb.org)
8
4
 
9
5
  ## Status
10
6
 
11
7
  [![Gem Version](https://badge.fury.io/rb/hanami-controller.svg)](https://badge.fury.io/rb/hanami-controller)
12
- [![CI](https://github.com/hanami/controller/workflows/ci/badge.svg?branch=main)](https://github.com/hanami/controller/actions?query=workflow%3Aci+branch%3Amain)
8
+ [![CI](https://github.com/hanami/controller/actions/workflows/ci.yml/badge.svg)](https://github.com/hanami/controller/actions?query=workflow%3Aci+branch%3Amain)
13
9
  [![Test Coverage](https://codecov.io/gh/hanami/controller/branch/main/graph/badge.svg)](https://codecov.io/gh/hanami/controller)
14
10
  [![Depfu](https://badges.depfu.com/badges/7cd17419fba78b726be1353118fb01de/overview.svg)](https://depfu.com/github/hanami/controller?project=Bundler)
15
- [![Inline Docs](http://inch-ci.org/github/hanami/controller.svg)](http://inch-ci.org/github/hanami/controller)
16
11
 
17
12
  ## Contact
18
13
 
@@ -20,16 +15,14 @@ Complete, fast and testable actions for Rack and [Hanami](http://hanamirb.org)
20
15
  * Community: http://hanamirb.org/community
21
16
  * Guides: https://guides.hanamirb.org
22
17
  * Mailing List: http://hanamirb.org/mailing-list
23
- * API Doc: http://rdoc.info/gems/hanami-controller
24
- * Bugs/Issues: https://github.com/hanami/controller/issues
18
+ * API Doc: http://rubydoc.info/gems/hanami-controller
25
19
  * Chat: http://chat.hanamirb.org
26
20
 
27
- ## Rubies
28
-
29
- __Hanami::Controller__ supports Ruby (MRI) 3.0+
30
21
 
31
22
  ## Installation
32
23
 
24
+ __Hanami::Controller__ supports Ruby (MRI) 3.1+
25
+
33
26
  Add this line to your application's Gemfile:
34
27
 
35
28
  ```ruby
@@ -961,4 +954,4 @@ __Hanami::Controller__ uses [Semantic Versioning 2.0.0](http://semver.org)
961
954
 
962
955
  ## Copyright
963
956
 
964
- Copyright © 2014 Hanami Team – Released under MIT License
957
+ Copyright © 2014–2024 Hanami Team – Released under MIT License
@@ -18,10 +18,10 @@ 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
- spec.add_dependency "hanami-utils", "~> 2.1"
24
+ spec.add_dependency "hanami-utils", "~> 2.2.beta"
25
25
  spec.add_dependency "dry-configurable", "~> 1.0", "< 2"
26
26
  spec.add_dependency "dry-core", "~> 1.0"
27
27
  spec.add_dependency "zeitwerk", "~> 2.6"
@@ -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-controller
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
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '2.1'
33
+ version: 2.2.beta
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '2.1'
40
+ version: 2.2.beta
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: dry-configurable
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -215,14 +215,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
215
215
  requirements:
216
216
  - - ">="
217
217
  - !ruby/object:Gem::Version
218
- version: '3.0'
218
+ version: '3.1'
219
219
  required_rubygems_version: !ruby/object:Gem::Requirement
220
220
  requirements:
221
221
  - - ">="
222
222
  - !ruby/object:Gem::Version
223
223
  version: '0'
224
224
  requirements: []
225
- rubygems_version: 3.5.6
225
+ rubygems_version: 3.5.9
226
226
  signing_key:
227
227
  specification_version: 4
228
228
  summary: Complete, fast and testable actions for Rack and Hanami