dry-matcher 0.10.0 → 1.0.0

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: 70aa7037f519f35f5c9c29206d0529fe452a5e0b08268f6d7d0884846e74bfa5
4
- data.tar.gz: c5022a321698bfff91e04688bc2c4b09487dff1c47902ade7005d6384745df2f
3
+ metadata.gz: e15710ea8633875555598d31ceab3d2641338ee7cbcb637f97fd707df05c05c2
4
+ data.tar.gz: c946fa6d1670575a51df6a9c18ee1ab561e0d932a64938b2acb61c5e8486bc22
5
5
  SHA512:
6
- metadata.gz: 7a53db4413d2e75db38e6740efc025d9b71a9a92af176e50dcdc514ab6ecd8b2b5f46175588c8c16c3316ade374d936c1899d7daccf4dcd8a2529283ac52be7c
7
- data.tar.gz: 42c1f0b533368724e43f9f01f99251bca601de0a1896a0adad2cce2362eeb3e5b76a324f4bee705dd5887f1def7c8ea24ae064889483bb9509e5b94ef9d81db6
6
+ metadata.gz: 941a39cfa94574429caf39efdaf2670f41bcdf6043ad64f7417d68ad97ea66f78b33990b9ed51a5d6fefd43ab75c7ffc0fe12a97d41a97bc7804271746f7e6f8
7
+ data.tar.gz: 33df73d85c7bb1c11d66a1b33b22d90025cf5efb27c0e42125d014861cc224915ee02ca87b0040f6b2576beee80dc85fcfd8ae5c96554c39636e93e57c386f4c
data/CHANGELOG.md CHANGED
@@ -1,8 +1,21 @@
1
1
  <!--- DO NOT EDIT THIS FILE - IT'S AUTOMATICALLY GENERATED VIA DEVTOOLS --->
2
2
 
3
+ ## 1.0.0 2023-01-01
4
+
5
+
6
+ ### Changed
7
+
8
+ - Update dry-core dependency (via #34) (@pnomolos)
9
+
10
+ [Compare v0.10.0...v1.0.0](https://github.com/dry-rb/dry-matcher/compare/v0.10.0...v1.0.0)
11
+
3
12
  ## 0.10.0 2022-11-16
4
13
 
5
14
 
15
+ ### Added
16
+
17
+ - MaybeMatcher for matching against Maybe values from dry-monads (@gabfssilva) in #33
18
+
6
19
  ### Changed
7
20
 
8
21
  - This version is compatible with recently released dry-rb dependencies (@flash-gordon)
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2015-2022 dry-rb team
3
+ Copyright (c) 2015-2023 dry-rb team
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy of
6
6
  this software and associated documentation files (the "Software"), to deal in
data/README.md CHANGED
@@ -1,29 +1,21 @@
1
1
  <!--- this file is synced from dry-rb/template-gem project -->
2
2
  [gem]: https://rubygems.org/gems/dry-matcher
3
3
  [actions]: https://github.com/dry-rb/dry-matcher/actions
4
- [codacy]: https://www.codacy.com/gh/dry-rb/dry-matcher
5
- [chat]: https://dry-rb.zulipchat.com
6
- [inchpages]: http://inch-ci.org/github/dry-rb/dry-matcher
7
4
 
8
- # dry-matcher [![Join the chat at https://dry-rb.zulipchat.com](https://img.shields.io/badge/dry--rb-join%20chat-%23346b7a.svg)][chat]
9
-
10
- [![Gem Version](https://badge.fury.io/rb/dry-matcher.svg)][gem]
11
- [![CI Status](https://github.com/dry-rb/dry-matcher/workflows/ci/badge.svg)][actions]
12
- [![Codacy Badge](https://api.codacy.com/project/badge/Grade/f09a7d1745fd430d829a1f825357db88)][codacy]
13
- [![Codacy Badge](https://api.codacy.com/project/badge/Coverage/f09a7d1745fd430d829a1f825357db88)][codacy]
14
- [![Inline docs](http://inch-ci.org/github/dry-rb/dry-matcher.svg?branch=main)][inchpages]
5
+ # dry-matcher [![Gem Version](https://badge.fury.io/rb/dry-matcher.svg)][gem] [![CI Status](https://github.com/dry-rb/dry-matcher/workflows/ci/badge.svg)][actions]
15
6
 
16
7
  ## Links
17
8
 
18
9
  * [User documentation](https://dry-rb.org/gems/dry-matcher)
19
10
  * [API documentation](http://rubydoc.info/gems/dry-matcher)
11
+ * [Forum](https://discourse.dry-rb.org)
20
12
 
21
13
  ## Supported Ruby versions
22
14
 
23
15
  This library officially supports the following Ruby versions:
24
16
 
25
17
  * MRI `>= 2.7.0`
26
- * jruby `>= 9.3` (postponed until 2.7 is supported)
18
+ * jruby `>= 9.4` (not tested on CI)
27
19
 
28
20
  ## License
29
21
 
data/dry-matcher.gemspec CHANGED
@@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
29
29
  spec.required_ruby_version = ">= 2.7.0"
30
30
 
31
31
  # to update dependencies edit project.yml
32
- spec.add_runtime_dependency "dry-core", "~> 1.0"
32
+ spec.add_runtime_dependency "dry-core", "~> 1.0", "< 2"
33
33
 
34
34
  spec.add_development_dependency "rake"
35
35
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Dry
4
4
  class Matcher
5
- VERSION = "0.10.0"
5
+ VERSION = '1.0.0'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dry-matcher
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Riley
8
8
  - Nikita Shilnikov
9
- autorequire:
9
+ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2022-11-16 00:00:00.000000000 Z
12
+ date: 2023-01-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: dry-core
@@ -18,6 +18,9 @@ dependencies:
18
18
  - - "~>"
19
19
  - !ruby/object:Gem::Version
20
20
  version: '1.0'
21
+ - - "<"
22
+ - !ruby/object:Gem::Version
23
+ version: '2'
21
24
  type: :runtime
22
25
  prerelease: false
23
26
  version_requirements: !ruby/object:Gem::Requirement
@@ -25,6 +28,9 @@ dependencies:
25
28
  - - "~>"
26
29
  - !ruby/object:Gem::Version
27
30
  version: '1.0'
31
+ - - "<"
32
+ - !ruby/object:Gem::Version
33
+ version: '2'
28
34
  - !ruby/object:Gem::Dependency
29
35
  name: rake
30
36
  requirement: !ruby/object:Gem::Requirement
@@ -68,7 +74,7 @@ metadata:
68
74
  changelog_uri: https://github.com/dry-rb/dry-matcher/blob/main/CHANGELOG.md
69
75
  source_code_uri: https://github.com/dry-rb/dry-matcher
70
76
  bug_tracker_uri: https://github.com/dry-rb/dry-matcher/issues
71
- post_install_message:
77
+ post_install_message:
72
78
  rdoc_options: []
73
79
  require_paths:
74
80
  - lib
@@ -83,8 +89,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
83
89
  - !ruby/object:Gem::Version
84
90
  version: '0'
85
91
  requirements: []
86
- rubygems_version: 3.1.6
87
- signing_key:
92
+ rubygems_version: 3.4.1
93
+ signing_key:
88
94
  specification_version: 4
89
95
  summary: Flexible, expressive pattern matching for Ruby
90
96
  test_files: []