Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare 1.6.0 #111

Merged
merged 2 commits into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
97 changes: 54 additions & 43 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion lib/amazing_print/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
#------------------------------------------------------------------------------
module AmazingPrint
def self.version
'1.5.0'
'1.6.0'
end
end
Loading