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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ab62a0c97b76f7949927089ed8756d227bc562da
4
- data.tar.gz: 984e1bab0a50be8123d97bf5c0f65de91864786d
3
+ metadata.gz: 0c78ceb11194e8ecddadf40d89435327f707f334
4
+ data.tar.gz: a6c2516d0665a72ca1f853a6e0c4b8904408fffc
5
5
  SHA512:
6
- metadata.gz: e5e7bc23e4894f7decf65be066cb1abc3e9932ed01bd7423563a39e56000a029e763cec8c676a058c3d6b4229f15f1fa80042fc5bb398eeebac5bf4b27e4471f
7
- data.tar.gz: 43e238ce42076e9ec99225d15654532a48ef1653c369176d5fd466162e0cf956ddc959eac178b0c602a75f5b7ae9106bf48e0fcc9f8cf6a4c52048fc4d0598f3
6
+ metadata.gz: 5c9b905b61fc83b79081e36c2630974a9c68642352b4d346a8b1d2d762aac922f6af844f83e63193dfd079567822e9596b9bfcff926e59fb5d8b5d0be3c40acb
7
+ data.tar.gz: 3b2959b1a4d07be4a9e160f74e95e9d9ec65a119df4904495d54de9efeb5c397e19bfbc20f57de3ebec23affde865b02e25d293ae4f1484444eb96a95c31a53d
@@ -1,7 +1,8 @@
1
- ### Required Information
1
+ ### General information
2
2
 
3
- - Releasinator Version:
4
- - OS and Ruby Version:
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 Description
7
- > Please include as many details (logs, steps to reproduce) as you can to help us reproduce this issue faster.
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.
@@ -1,5 +1,5 @@
1
1
  require 'colorize'
2
- require 'Vandamme'
2
+ require 'vandamme'
3
3
  require 'semantic'
4
4
  require_relative "../current_release"
5
5
  require_relative '../printer'
@@ -1,3 +1,3 @@
1
1
  module Releasinator
2
- VERSION = "0.6.3"
2
+ VERSION = "0.6.4"
3
3
  end
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? "(#{filename})"
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.3
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: 2016-09-19 00:00:00.000000000 Z
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.5.1
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.