pr-with-params 2.0.0 → 2.0.1

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: fb5d7b7436528a5a08568892974cc238bd5ffc1dd6fb40e2157be5600b72dd04
4
- data.tar.gz: 8904c400e3fc49e1ac68f1434279af3d2b2a92f8c39fddc0b0b4b35c825d3b5f
3
+ metadata.gz: 65a6f04903fd655adfcfa1aed1827a9713435ce946271b3c1b59377f5a3ac680
4
+ data.tar.gz: 2367198e8ffdeb3eaaf98ebecf58862dd367c8a470af3604cdd2b51d5d9be8c9
5
5
  SHA512:
6
- metadata.gz: 00473d4b542df9d312c51f8e6801b2050109108780f914fe49cd5f5048493792d002ab3bfb5b992461644352612e9cfc2c70ff80d010fcfc32d71596d14f7379
7
- data.tar.gz: 4b86fc3db6832b59830123dce6a2b1077b90fc312d28cd360bcc648a931692680c03059c218e7acd2d8da3ccdbc3886541dd98ee677ed699347d3a5d1d523fbe
6
+ metadata.gz: '091a3fb07089ef03a15980313ced7454c6f4cd84dd2e2e0aae88f24b396500c41c36831fff9522d6dc72bab37075550a2b372094978a7f81e7574199aaaaf7f8'
7
+ data.tar.gz: 33b554cdcf68cfb8eda7edeb83d0ced213f25b44b40708203bb63206dd9678ed9532f04f184786adce3c8df877485e8f75fc6bae02953c832d25c45956bb41fb
data/CHANGELOG.md CHANGED
@@ -15,3 +15,15 @@ To migrate to this version, simply run `gem update pr-with-params`
15
15
 
16
16
  ### Fixed
17
17
  - Occasional failures related to `launchy` not being loaded properly
18
+
19
+ ## [2.0.1] - 2023-06-05
20
+
21
+ To migrate to this version, simply run `gem update pr-with-params`
22
+
23
+ ### Added
24
+
25
+ ### Changed
26
+
27
+ ### Fixed
28
+ - Typos in messages displayed
29
+ - Remove unnecessary print statements
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- pr-with-params (2.0.0)
4
+ pr-with-params (2.0.1)
5
5
  activesupport
6
6
  launchy (~> 2.5)
7
7
  rake (~> 13.0)
@@ -33,8 +33,6 @@ module PRWithParams
33
33
  default_title = `git show-branch --no-name $(git log #{base_branch}..#{branch_name} --pretty=format:"%h" | tail -1)`.chomp
34
34
  all_options[:title] ||= default_title
35
35
 
36
- puts all_options
37
- puts options
38
36
  PRWithParams::OptionsValidator.validate!(all_options.except(:validators), validators: all_options[:validators])
39
37
 
40
38
  remote_git_uri = `git config --get remote.origin.url`.sub('git@github.com:', '').sub('.git', '').chomp
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PRWithParams
4
- VERSION = "2.0.0"
4
+ VERSION = "2.0.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pr-with-params
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - 2k-joker