mutant 0.9.10 → 0.9.11

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: 45484c558fad8e5115eb2b4c45712b762eb1d13f12fe7e7a29d9ec0696a16e24
4
- data.tar.gz: 5354afd8cf7491687dfef3af68157e37cc549a0190d09bb8755c8bcf33d24051
3
+ metadata.gz: 5cc24215454715aa8d55ed5f972ca4b5ab6c297bccf35e64834f73de7cc914f0
4
+ data.tar.gz: c7b524c6eaa3fe49cce08b1b6ba9c94d379f090f6b75cc6ca38450fed46f101b
5
5
  SHA512:
6
- metadata.gz: 1546be8318d6135d2834120bcc3052b879d6568560a9ec5dd056448a46cdd240fede609a4336fb5e64937526aa2db64627285c70dc45b09aa0175d6abc471749
7
- data.tar.gz: b8705cb2eb82b286d77ea87a17af903661747cfad61d3e51fcc70b1f906bcf47b07e33305810f1d59cc4f3d2e802b5eae20e0ce4ecf37b686c2fd73e1bc41933
6
+ metadata.gz: d79ce339c29ff4b9ec958e9405281086d1a56daa515a2b154d593ef98338373b6bcbda48f1a4ce924a186d3bcdbff6f4775b46e279da3aa39b1dc8e00525d097
7
+ data.tar.gz: 1d69b7b466b6004461e9a6cd862a3c211a3e9b17bb36ddd4e00e6b8fffb32d4b0b4f2f9dbff9cc8819b342682eb564d5f07fc7de1b742b15f14a9575ef5fe4e2
@@ -1,10 +1,14 @@
1
- # v0.9.10 unreleased
1
+ # v0.9.11 2020-08-25
2
+
3
+ * Remove mutation to equivalent semantics on endless ranges [#1036](https://github.com/mbj/mutant/pull/1036).
4
+
5
+ # v0.9.10 2020-08-25
2
6
 
3
7
  * Remove bounds to allow `diff-lcs 1.4.x` [#1032](https://github.com/mbj/mutant/pull/1032).
4
8
  * Fix crash on endless ranges [#1026](https://github.com/mbj/mutant/pull/1026).
5
9
  * Fix memoized subjects to preserve freezer option [#973](https://github.com/mbj/mutant/pull/973).
6
10
 
7
- # v0.9.9 2020-09-25
11
+ # v0.9.9 2020-08-25
8
12
 
9
13
  + Add support for mutating methods inside eigenclasses `class <<`. [#1009](https://github.com/mbj/mutant/pull/1009)
10
14
  - Remove `<` -> `<=` and `>` -> `>=` mutations as non canonical. [#1020](https://github.com/mbj/mutant/pull/1020)
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- mutant (0.9.10)
4
+ mutant (0.9.11)
5
5
  abstract_type (~> 0.0.7)
6
6
  adamantium (~> 0.2.0)
7
7
  anima (~> 0.3.1)
@@ -21,9 +21,12 @@ module Mutant
21
21
 
22
22
  def dispatch
23
23
  emit_singletons
24
- emit_inverse
25
24
  emit_lower_bound_mutations
26
- emit_upper_bound_mutations if upper_bound
25
+
26
+ return unless upper_bound
27
+
28
+ emit_inverse
29
+ emit_upper_bound_mutations
27
30
  end
28
31
 
29
32
  def emit_inverse
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Mutant
4
4
  # Current mutant version
5
- VERSION = '0.9.10'
5
+ VERSION = '0.9.11'
6
6
  end # Mutant
@@ -45,7 +45,6 @@ unless RUBY_VERSION.start_with?('2.5')
45
45
  singleton_mutations
46
46
  mutation '-1...'
47
47
  mutation '0...'
48
- mutation '1..'
49
48
  mutation '2...'
50
49
  mutation 'nil...'
51
50
  mutation 'self...'
@@ -57,7 +56,6 @@ unless RUBY_VERSION.start_with?('2.5')
57
56
  singleton_mutations
58
57
  mutation '-1..'
59
58
  mutation '0..'
60
- mutation '1...'
61
59
  mutation '2..'
62
60
  mutation 'nil..'
63
61
  mutation 'self..'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mutant
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.10
4
+ version: 0.9.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Markus Schirp