Skip to content

Commit

Permalink
1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sonots committed Aug 19, 2019
1 parent 4278b3e commit 8127ce0
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
/tmp/
Gemfile.lock
/html/
/vendor/
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# 1.4.0

Enhancements:

* Add support for changing severity using bang methods [#15](https://github.com/ruby/logger/pull/15) (thanks to ioquatix)
* Set filename when initializing logger with a File object to make reopen work [#30](https://github.com/ruby/logger/pull/30) (thanks to jeremyevans)
* Add option to set the binary mode of the log device [#33](https://github.com/ruby/logger/pull/33) (thanks to refaelfranca)

Also, large refactorings of codes and testing libraries are introduced.
2 changes: 1 addition & 1 deletion lib/logger/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

class Logger
VERSION = "1.3.0"
VERSION = "1.4.0"
end
4 changes: 2 additions & 2 deletions logger.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ end
Gem::Specification.new do |spec|
spec.name = "logger"
spec.version = Logger::VERSION
spec.authors = ["SHIBATA Hiroshi"]
spec.email = ["[email protected]"]
spec.authors = ["Naotoshi Seo", "SHIBATA Hiroshi"]
spec.email = ["[email protected]", "[email protected]"]

spec.summary = %q{Provides a simple logging utility for outputting messages.}
spec.description = %q{Provides a simple logging utility for outputting messages.}
Expand Down

1 comment on commit 8127ce0

@patrick-jumio
Copy link

@patrick-jumio patrick-jumio commented on 8127ce0 Aug 19, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

logger 1.4.0 seems to depend on ruby 2.3 whereas this was not the case for logger 1.3.0 (ruby 2.0.0 sufficed)

    amazon-ebs: Installing gem logger-1.4.0
    amazon-ebs: Downloading gem logger-1.4.0.gem
    amazon-ebs: GET https://rubygems.org/gems/logger-1.4.0.gem
    amazon-ebs: Fetching: logger-1.4.0.gem (100%)
    amazon-ebs: 200 OK
    amazon-ebs: ERROR:  Error installing marathon_deploy:
    amazon-ebs: 	logger requires Ruby version >= 2.3.0.

edited: I'm assuming that my comment is not accurate, and that there is some other gem mechanism causing the error I observe.

I solved the error by sticking to logger version 1.3.0

Please sign in to comment.