hanami-view 2.1.0 → 2.2.0.beta1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f6af4657bef0600d48bfea5710ec7e80560d587e143fa9789074d00cafa6bcb5
4
- data.tar.gz: 42eb43b7e50f496f9ddda0e70bd9d030acc80bbefbf2b5e7771f542ca7b59657
3
+ metadata.gz: dc52e88f649a2df1c614b8cf9ca31387ad40b05daad740370e45590edac356b2
4
+ data.tar.gz: 043e40672fd471db72134e8b065d98b9a0c7d29df0a2c9afb4c1e12020047400
5
5
  SHA512:
6
- metadata.gz: 14d4864da922dbbf7f87a01b8bdc450ee4fda9436d4ee16f3baea27c7491523a7cf0d6a5894956c48aa670e5568f7d12b3a27f9e531071d373aad8d441ef791d
7
- data.tar.gz: 2aa67c6ca5fa7f63fd6585c98b619a522ce9bdaa48d3ea2c6537fcac63c889dcda4f45556ff67a2c6a07c228fdf2db72f2c976ab06e218f5264b91700756bdec
6
+ metadata.gz: b0bc3ed13fe3d969379f3b8b2d36a8d2a02e01dcff5d20a93b47722fcc21e2778bc00d9c7d32a4959f4431187eb3b7b9692a1bbbdaff411426a6b1e37f82d730
7
+ data.tar.gz: 6235e79ed5d78d1bcae4c7fe9f3506f7e84da1749a7cc689dabdb3deaece8c5b1dbf472b8d2bc1af4881055f70ccf89d2d6a1125a784cfaf2438da3ef7f575cf
data/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  View layer for Hanami
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
@@ -2,17 +2,12 @@
2
2
 
3
3
  A view layer for [Hanami](http://hanamirb.org)
4
4
 
5
- ## Version
6
-
7
- **This branch contains the code for `hanami-view` 2.x.**
8
-
9
5
  ## Status
10
6
 
11
7
  [![Gem Version](https://badge.fury.io/rb/hanami-view.svg)](https://badge.fury.io/rb/hanami-view)
12
- [![CI](https://github.com/hanami/view/workflows/ci/badge.svg?branch=main)](https://github.com/hanami/view/actions?query=workflow%3Aci+branch%3Amain)
8
+ [![CI](https://github.com/hanami/view/actions/workflows/ci.yml/badge.svg)](https://github.com/hanami/view/actions?query=workflow%3Aci+branch%3Amain)
13
9
  [![Test Coverage](https://codecov.io/gh/hanami/view/branch/main/graph/badge.svg)](https://codecov.io/gh/hanami/view)
14
10
  [![Depfu](https://badges.depfu.com/badges/7cd17419fba78b726be1353118fb01de/overview.svg)](https://depfu.com/github/hanami/view?project=Bundler)
15
- [![Inline Docs](http://inch-ci.org/github/hanami/view.svg)](http://inch-ci.org/github/hanami/view)
16
11
 
17
12
  ## Contact
18
13
 
@@ -20,13 +15,12 @@ A view layer for [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-view
24
- * Bugs/Issues: https://github.com/hanami/view/issues
18
+ * API Doc: http://rubydoc.info/gems/hanami-view
25
19
  * Chat: http://chat.hanamirb.org
26
20
 
27
21
  ## Rubies
28
22
 
29
- __Hanami::view__ supports Ruby (MRI) 3.0+
23
+ __Hanami::View__ supports Ruby (MRI) 3.1+
30
24
 
31
25
  ## Installation
32
26
 
@@ -62,4 +56,4 @@ __Hanami::View__ uses [Semantic Versioning 2.0.0](http://semver.org)
62
56
 
63
57
  ## Copyright
64
58
 
65
- Copyright © 2014 Hanami Team – Released under MIT License
59
+ Copyright © 2014–2024 Hanami Team – Released under MIT License
data/hanami-view.gemspec CHANGED
@@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
25
25
  spec.metadata['source_code_uri'] = 'https://github.com/hanami/view'
26
26
  spec.metadata['bug_tracker_uri'] = 'https://github.com/hanami/view/issues'
27
27
 
28
- spec.required_ruby_version = ">= 3.0"
28
+ spec.required_ruby_version = ">= 3.1"
29
29
 
30
30
  spec.add_runtime_dependency "dry-configurable", "~> 1.0"
31
31
  spec.add_runtime_dependency "dry-core", "~> 1.0"
@@ -4,6 +4,6 @@ module Hanami
4
4
  class View
5
5
  # @api public
6
6
  # @since 0.1.0
7
- VERSION = "2.1.0"
7
+ VERSION = "2.2.0.beta1"
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hanami-view
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
  - Tim Riley
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2024-02-27 00:00:00.000000000 Z
12
+ date: 2024-07-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: dry-configurable
@@ -210,14 +210,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
210
210
  requirements:
211
211
  - - ">="
212
212
  - !ruby/object:Gem::Version
213
- version: '3.0'
213
+ version: '3.1'
214
214
  required_rubygems_version: !ruby/object:Gem::Requirement
215
215
  requirements:
216
216
  - - ">="
217
217
  - !ruby/object:Gem::Version
218
218
  version: '0'
219
219
  requirements: []
220
- rubygems_version: 3.5.6
220
+ rubygems_version: 3.5.9
221
221
  signing_key:
222
222
  specification_version: 4
223
223
  summary: A complete, standalone view rendering system that gives you everything you