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 +4 -4
- data/CHANGELOG.md +12 -0
- data/Gemfile.lock +1 -1
- data/lib/pr_with_params/cli.rb +0 -2
- data/lib/pr_with_params/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 65a6f04903fd655adfcfa1aed1827a9713435ce946271b3c1b59377f5a3ac680
|
|
4
|
+
data.tar.gz: 2367198e8ffdeb3eaaf98ebecf58862dd367c8a470af3604cdd2b51d5d9be8c9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
data/lib/pr_with_params/cli.rb
CHANGED
|
@@ -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
|