releasinator 0.6.3 → 0.6.4
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/.github/ISSUE_TEMPLATE.md +6 -5
- data/CHANGELOG.md +5 -0
- data/lib/changelog/validator.rb +1 -1
- data/lib/releasinator/version.rb +1 -1
- data/lib/validator.rb +1 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0c78ceb11194e8ecddadf40d89435327f707f334
|
|
4
|
+
data.tar.gz: a6c2516d0665a72ca1f853a6e0c4b8904408fffc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5c9b905b61fc83b79081e36c2630974a9c68642352b4d346a8b1d2d762aac922f6af844f83e63193dfd079567822e9596b9bfcff926e59fb5d8b5d0be3c40acb
|
|
7
|
+
data.tar.gz: 3b2959b1a4d07be4a9e160f74e95e9d9ec65a119df4904495d54de9efeb5c397e19bfbc20f57de3ebec23affde865b02e25d293ae4f1484444eb96a95c31a53d
|
data/.github/ISSUE_TEMPLATE.md
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
###
|
|
1
|
+
### General information
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
* SDK/Library version: <!-- Example: 4.7.2 -->
|
|
4
|
+
* Language, language version, and OS: <!-- Example: Java 1.8.0_101-b13 on Ubuntu 16.10 -->
|
|
5
5
|
|
|
6
|
-
### Issue
|
|
7
|
-
|
|
6
|
+
### Issue description
|
|
7
|
+
|
|
8
|
+
<!-- To help us quickly reproduce your issue, include as many details as possible, such as logs, steps to reproduce, and so on. If the issue reports a new feature, follow the [user story](https://en.wikipedia.org/wiki/User_story) format to clearly describe the use case. -->
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Releasinator release notes
|
|
2
2
|
==========================
|
|
3
3
|
|
|
4
|
+
0.6.4
|
|
5
|
+
-----
|
|
6
|
+
* Remove unused 'fileutils' dependency.
|
|
7
|
+
* Allow LICENSE links in README.md to be relative.
|
|
8
|
+
|
|
4
9
|
0.6.3
|
|
5
10
|
-----
|
|
6
11
|
* When using git flow, validate the release branch is an ancestor of the develop branch. User must confirm a warning if is not.
|
data/lib/changelog/validator.rb
CHANGED
data/lib/releasinator/version.rb
CHANGED
data/lib/validator.rb
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
require 'colorize'
|
|
2
|
-
require 'fileutils'
|
|
3
2
|
require 'net/http'
|
|
4
3
|
require 'json'
|
|
5
4
|
require_relative 'command_processor'
|
|
@@ -217,7 +216,7 @@ module Releasinator
|
|
|
217
216
|
Dir.chdir(@releasinator_config.base_dir) do
|
|
218
217
|
File.open("README.md", "r") do |f|
|
|
219
218
|
f.each_line do |line|
|
|
220
|
-
if line.include?
|
|
219
|
+
if line.include?("(#{filename})") or line.include?("(./#{filename})")
|
|
221
220
|
Printer.success("#{filename} referenced in #{@releasinator_config.base_dir}/README.md")
|
|
222
221
|
return
|
|
223
222
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: releasinator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- PayPal
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-08-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -190,7 +190,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
190
190
|
version: '0'
|
|
191
191
|
requirements: []
|
|
192
192
|
rubyforge_project:
|
|
193
|
-
rubygems_version: 2.
|
|
193
|
+
rubygems_version: 2.2.2
|
|
194
194
|
signing_key:
|
|
195
195
|
specification_version: 4
|
|
196
196
|
summary: The releasinator assists in building and releasing open source projects.
|