1
0
Fork 0
mirror of https://github.com/awesome-print/awesome_print synced 2023-03-27 23:22:34 -04:00

1.7.0 version bump for release

This commit is contained in:
Gerard Caulfield 2016-06-07 02:52:15 +10:00
parent 012197e54f
commit fed82c4bea
No known key found for this signature in database
GPG key ID: 623B327128A9BEC3
3 changed files with 6 additions and 3 deletions

View file

@ -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,

View file

@ -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"

View file

@ -5,6 +5,6 @@
#------------------------------------------------------------------------------
module AwesomePrint
def self.version
'1.6.2'
'1.7.0'
end
end