From 2ff58fd94b5a50facbc62116748bc5706ee43da3 Mon Sep 17 00:00:00 2001 From: Kevin McCormack Date: Fri, 8 Mar 2024 09:42:23 -0500 Subject: [PATCH 1/2] Update changelog --- CHANGELOG.md | 97 +++++++++++++++++++++++++++++----------------------- 1 file changed, 54 insertions(+), 43 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e427b32..70f70c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,64 +1,75 @@ +# CHANGELOG + ## Unreleased - - Use pager with Pry #96 - - Add Rails 7 appraisal #98 - - Allow Hash keys to be colorized #99 - - Use CI merge queue #104 - - Add support for Ruby 3.3 #105 - - Add Mongoid field aliases #106 + +## V1.6.0 + +- Use pager with Pry #96 +- Add Rails 7 appraisal #98 +- Allow Hash keys to be colorized #99 +- Use CI merge queue #104 +- Add support for Ruby 3.3 #105 +- Add Mongoid field aliases #106 +- Add bigdecimal gem #109 +- Add ExtLoader to help with require order issues #110 ## v1.5.0 - - Drop support for Ruby 2.3 and 2.4 as well as JRuby 9.1 - - Add File/Dir formatters for mswin platform #48 - - Don't monkey patch String class #91 - - Fix ruby19 hash syntax so it can be copy-pasted #94 + +- Drop support for Ruby 2.3 and 2.4 as well as JRuby 9.1 +- Add File/Dir formatters for mswin platform #48 +- Don't monkey patch String class #91 +- Fix ruby19 hash syntax so it can be copy-pasted #94 ## v1.4.0 - - Support loading config from `$XDG_CONFIG_HOME/aprc` - #63 - - Remove support for Rails 5.1 #75 - - Update AR specs for Ruby 2.6.7 #76 - - Load .aprc configs only once. #74 - - Add XDG config support #77 - - Rubocop updates #79 - - Update Irb integration for v1.2.6+ #81 + +- Support loading config from `$XDG_CONFIG_HOME/aprc` - #63 +- Remove support for Rails 5.1 #75 +- Update AR specs for Ruby 2.6.7 #76 +- Load .aprc configs only once. #74 +- Add XDG config support #77 +- Rubocop updates #79 +- Update Irb integration for v1.2.6+ #81 ## v1.3.0 - - Fix HTML escaping problems #53 - - Update test suite for Ruby 2.7.2 and JRuby #61 - - Add ActionView spec for html_safe #65 - - Add support for Rails 6.1 #68 - - Update specs for Ruby 3.0 #69 + +- Fix HTML escaping problems #53 +- Update test suite for Ruby 2.7.2 and JRuby #61 +- Add ActionView spec for html_safe #65 +- Add support for Rails 6.1 #68 +- Update specs for Ruby 3.0 #69 ## v1.2.2 - - Support Ruby 3.0 / IRB 1.2.6 - #57 - - Fix FrozenError - #51 - - Drop support for Ruby 2.3 and 2.4 as well as JRuby 9.1 - #46 - - Add passing of `options` to `Logger#ap` - #55 + +- Support Ruby 3.0 / IRB 1.2.6 - #57 +- Fix FrozenError - #51 +- Drop support for Ruby 2.3 and 2.4 as well as JRuby 9.1 - #46 +- Add passing of `options` to `Logger#ap` - #55 ## v1.2.1 - - Correctly print active_model_errors for models that don't have tables - #42 by sahglie - - Update AmazingPrint::MongoMapper for frozen strings - #44 -## v1.2.0 +- Correctly print active_model_errors for models that don't have tables - #42 by sahglie +- Update AmazingPrint::MongoMapper for frozen strings - #44 - - Fix frozen string literal issue with ActiveRecord - - Add uncolor String method to remove ANSI color codes - #30 by duffyjp - - Restore original copyright - #33 by amarshall - - Remove method core extension since it is not needed since ruby 1.9 - #37 by grosser - - Remove pale and black string color aliases - #38 - - Fix formatting ActionController::Parameters - #29 +## v1.2.0 +- Fix frozen string literal issue with ActiveRecord +- Add uncolor String method to remove ANSI color codes - #30 by duffyjp +- Restore original copyright - #33 by amarshall +- Remove method core extension since it is not needed since ruby 1.9 - #37 by grosser +- Remove pale and black string color aliases - #38 +- Fix formatting ActionController::Parameters - #29 ## v1.1.0 - - Print out method keyword arguments - - Fix NoMethodError with Sequel - - Code cleanups - -Thanks for the great contributions from: - - andydna - - beanieboi +- Print out method keyword arguments +- Fix NoMethodError with Sequel +- Code cleanups +Thanks for the great contributions from: +- andydna +- beanieboi ## v1.0.0 - - Initial Release. + +- Initial Release. From f5964590cb15dccf6a7452842c4ad8b6478316fe Mon Sep 17 00:00:00 2001 From: Kevin McCormack Date: Fri, 8 Mar 2024 09:46:59 -0500 Subject: [PATCH 2/2] Bump version to 1.6.0 --- lib/amazing_print/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/amazing_print/version.rb b/lib/amazing_print/version.rb index 9eba1d8..6b4666f 100644 --- a/lib/amazing_print/version.rb +++ b/lib/amazing_print/version.rb @@ -7,6 +7,6 @@ #------------------------------------------------------------------------------ module AmazingPrint def self.version - '1.5.0' + '1.6.0' end end