unwrappr 0.3.3 → 0.3.4

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: fb01e285969c6ecb83f014e92ea9db01c8afcf89f6ba168f9d67595ec27afcd8
4
- data.tar.gz: 32435a510da076389ff992d5b13b9d541a987274f2f7a05b3f1ccafa8ce72793
3
+ metadata.gz: 8d7615c0cd1e1710727eeecd8abc6fe74c4c59e8bc64dc014bec1d5145012cbe
4
+ data.tar.gz: ebda79505b1972885b653a6badccb5ff78515f7594b0560ab0e9d9892eb6f24d
5
5
  SHA512:
6
- metadata.gz: 1b63b35eca5a0ebbaa6936a2f6b36abdaad8cdc4ced4d1eda91d36d3b1fac15524359cc50218adfbf6ebbe172eb4b62056be6b3f83fb0621cf72eea0bda3c97d
7
- data.tar.gz: 1940fb52dc32faaebfd4bcb008ee9de6572d4d3e55d18a15eadcb84c50878cabd694a56497e4678079f646f1344883c4adfb348571298c0b3af91efba5cd3afa
6
+ metadata.gz: 6b5e5467c98c5d78fcb333932b2f9631b2211578bb6995cecf1715178066da6e3f82ebbfa9fd54e9b74e68042444366117b5ce7aad1d734ae42574183b11b4f5
7
+ data.tar.gz: 622c8e5c15a520ed3a31fe827801b0f110f87c8c53bd5af511bc74685607e560fb656783668beee5f8d14f0a8eadc699b067b42925069c66edaeae56b5cc6700
data/CHANGELOG.md CHANGED
@@ -6,19 +6,43 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ [Unreleased]: https://github.com/envato/unwrappr/compare/v0.3.4...HEAD
10
+
11
+ ## [0.3.4] 2019-10-24
12
+ ### Fixed
13
+ - Fix failure to annotate gem change with '.' in its name ([#65]).
14
+
15
+ [0.3.4]: https://github.com/envato/unwrappr/compare/v0.3.3...v0.3.4
16
+ [#65]: https://github.com/envato/unwrappr/pull/65
17
+
9
18
  ## [0.3.3] 2019-06-07
10
- - Fix issue where gem install will now work on RubyGems v3
19
+ ### Fixed
20
+ - Fix issue where gem install will now work on RubyGems v3 ([#61]).
21
+
22
+ [0.3.3]: https://github.com/envato/unwrappr/compare/v0.3.2...v0.3.3
23
+ [#61]: https://github.com/envato/unwrappr/pull/61
11
24
 
12
25
  ## [0.3.2] 2018-11-13
13
26
  ### Added
14
- - Specify Ruby and RubyGems requirements in gemspec.
15
- - Clone one git repository or more and create an annotated bundle update PR for each.
27
+ - Specify Ruby and RubyGems requirements in gemspec ([#56]).
28
+ - Clone one git repository or more and create an annotated bundle update PR for each ([#52]).
29
+
30
+ [0.3.2]: https://github.com/envato/unwrappr/compare/v0.3.1...v0.3.2
31
+ [#56]: https://github.com/envato/unwrappr/pull/56
32
+ [#52]: https://github.com/envato/unwrappr/pull/52
16
33
 
17
34
  ## [0.3.1] 2018-11-12
18
35
  ### Changed
19
- - Travis CI enabled
20
- - Ensure we are protected against CVE-2017-8418
21
- - RubyGems metadata includes a description
36
+ - Travis CI enabled ([#55]).
37
+ - Ensure we are protected against CVE-2017-8418 ([#54]).
38
+ - RubyGems metadata includes a description ([#49]).
39
+
40
+ [0.3.1]: https://github.com/envato/unwrappr/compare/v0.3.0...v0.3.1
41
+ [#55]: https://github.com/envato/unwrappr/pull/55
42
+ [#54]: https://github.com/envato/unwrappr/pull/54
43
+ [#49]: https://github.com/envato/unwrappr/pull/49
22
44
 
23
45
  ## [0.3.0] 2018-11-12
24
- ## Initial Release
46
+ ### Initial Release
47
+
48
+ [0.3.0]: https://github.com/envato/unwrappr/releases/tag/v0.3.0
@@ -63,7 +63,7 @@ module Unwrappr
63
63
  # '+ websocket-driver (0.6.5)'
64
64
  # Careful not to match this (note the wider indent):
65
65
  # '+ websocket-extensions (>= 0.1.0)'
66
- pattern = /^(?<change_type>[\+\-]) (?<gem_name>[\w-]+) \(\d/
66
+ pattern = /^(?<change_type>[\+\-]) (?<gem_name>[\S]+) \(\d/
67
67
  match = pattern.match(line)
68
68
  return match[:gem_name], match[:change_type] unless match.nil?
69
69
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Unwrappr
4
- VERSION = '0.3.3'
4
+ VERSION = '0.3.4'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unwrappr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Emilyn Escabarte
@@ -12,7 +12,7 @@ authors:
12
12
  autorequire:
13
13
  bindir: exe
14
14
  cert_chain: []
15
- date: 2019-06-07 00:00:00.000000000 Z
15
+ date: 2019-10-24 00:00:00.000000000 Z
16
16
  dependencies:
17
17
  - !ruby/object:Gem::Dependency
18
18
  name: bundler
@@ -291,7 +291,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
291
291
  - !ruby/object:Gem::Version
292
292
  version: '2.7'
293
293
  requirements: []
294
- rubygems_version: 3.0.3
294
+ rubygems_version: 3.0.6
295
295
  signing_key:
296
296
  specification_version: 4
297
297
  summary: A tool to unwrap your gems and see what's changed easily