From 86359018cc1360c15476a2e542b603533ad6cb6d Mon Sep 17 00:00:00 2001 From: Dmitry Mozzherin Date: Wed, 9 Aug 2017 13:41:28 -0500 Subject: [PATCH] Text typo :shipit: 3.1.4 --- CHANGELOG.md | 4 ++++ lib/gn_crossmap/version.rb | 2 +- spec/support/helpers.rb | 1 - 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a90e68..e3a5b37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # ``gn_crossmap`` CHANGELOG +## 3.1.4 + +* @dimus - test typo + ## 3.1.3 * @dimus - Fix formatting bug for empty results, remove BOM char from headers diff --git a/lib/gn_crossmap/version.rb b/lib/gn_crossmap/version.rb index 69b9c4f..558f9e0 100644 --- a/lib/gn_crossmap/version.rb +++ b/lib/gn_crossmap/version.rb @@ -2,7 +2,7 @@ # Namespace module for crossmapping checklists to GN sources module GnCrossmap - VERSION = "3.1.3" + VERSION = "3.1.4" def self.version VERSION diff --git a/spec/support/helpers.rb b/spec/support/helpers.rb index b7f4c3b..b32bb87 100644 --- a/spec/support/helpers.rb +++ b/spec/support/helpers.rb @@ -10,7 +10,6 @@ def uniform_rows?(file_path) File.open(file_path).each do |l| fields = l.split("\t") headers = fields unless headers - require "byebug"; byebug if fields.size != headers.size return false if fields.size != headers.size end true