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

Make this into a 2.0.0-pre gem

This commit is contained in:
James Cox 2019-01-23 15:10:44 -05:00
parent fe0786d27c
commit 976e4a5c42
3 changed files with 7 additions and 4 deletions

View file

@ -1,6 +1,10 @@
## master (unreleased) ## master (unreleased)
## 2.0.0 ## 2.0.0-pre
- Massive overhaul in the way formatters work. Now they are registered with a factory pattern, which includes
a simple method to determine if that formatter can handle the content. [@imajes]
- Remove support for mongo mapper, and ruby pre 2.x [@imajes]
- It's probably faster? :)
- Fixes spec suite to properly work via travis, gets a clean build [@imajes, others] - Fixes spec suite to properly work via travis, gets a clean build [@imajes, others]
- Adds support for ActiveModel::Errors [@dshinzie] - [#301] - Adds support for ActiveModel::Errors [@dshinzie] - [#301]
- removes use of `strip_heredoc` from specs as it's a rails dep [@kstephens] - [#303] - removes use of `strip_heredoc` from specs as it's a rails dep [@kstephens] - [#303]

View file

@ -4,9 +4,8 @@ require 'awesome_print/version'
Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = 'awesome_print' s.name = 'awesome_print'
s.version = AwesomePrint.version s.version = AwesomePrint.version
s.authors = 'Michael Dvorkin' s.authors = 'Michael Dvorkin, James Cox & contributors'
s.date = Time.now.strftime('%Y-%m-%d') s.date = Time.now.strftime('%Y-%m-%d')
s.email = 'mike@dvorkin.net'
s.homepage = 'https://github.com/awesome-print/awesome_print' s.homepage = 'https://github.com/awesome-print/awesome_print'
s.summary = 'Pretty print Ruby objects with proper indentation and colors' s.summary = 'Pretty print Ruby objects with proper indentation and colors'
s.description = 'Great Ruby debugging companion: pretty print Ruby objects to visualize their structure. Supports custom object formatting via plugins' s.description = 'Great Ruby debugging companion: pretty print Ruby objects to visualize their structure. Supports custom object formatting via plugins'

View file

@ -5,6 +5,6 @@ module AwesomePrint
end end
def self.version def self.version
'1.8.0' '2.0.0-pre'
end end
end end