From fed82c4beae7b9b34013b357efdf0814bd9d2cb0 Mon Sep 17 00:00:00 2001 From: Gerard Caulfield Date: Tue, 7 Jun 2016 02:52:15 +1000 Subject: [PATCH] 1.7.0 version bump for release --- CHANGELOG.md | 3 +++ awesome_print.gemspec | 4 ++-- lib/awesome_print/version.rb | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7104d9b..0a9d72e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ ## master (unreleased) + + +## 1.7.0 - Refactoring by extracting formatters into their own classes [@waldyr] - [#237] - Fixes Travis builds and improves tests [@nviennot], [@waldyr], [@gerrywastaken] - [#225], [#228], [#229], [#230], [#231] - Creates `awesome_object_data` to encapsulate the logic of printing object internals, diff --git a/awesome_print.gemspec b/awesome_print.gemspec index 47fb50f..7212bf0 100644 --- a/awesome_print.gemspec +++ b/awesome_print.gemspec @@ -6,12 +6,12 @@ Gem::Specification.new do |s| s.name = "awesome_print" - s.version = "1.6.2" + s.version = "1.7.0" # s.platform = Gem::Platform::RUBY s.authors = "Michael Dvorkin" s.date = Time.now.strftime("%Y-%m-%d") s.email = "mike@dvorkin.net" - s.homepage = "http://github.com/michaeldv/awesome_print" + s.homepage = "https://github.com/awesome-print/awesome_print" s.summary = "Pretty print Ruby objects with proper indentation and colors" s.description = "Great Ruby dubugging companion: pretty print Ruby objects to visualize their structure. Supports custom object formatting via plugins" s.license = "MIT" diff --git a/lib/awesome_print/version.rb b/lib/awesome_print/version.rb index 0e1edab..b0eb80f 100644 --- a/lib/awesome_print/version.rb +++ b/lib/awesome_print/version.rb @@ -5,6 +5,6 @@ #------------------------------------------------------------------------------ module AwesomePrint def self.version - '1.6.2' + '1.7.0' end end