Skip to content

Commit

Permalink
Prepare for 3.3.1 release
Browse files Browse the repository at this point in the history
- Administrative and Ruby 2.7 bugfix
  • Loading branch information
halostatue committed Dec 26, 2019
1 parent c446731 commit a9b7dd4
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 9 deletions.
2 changes: 2 additions & 0 deletions Contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ Thanks to everyone else who has contributed to mime-types over the years:

* Aaron Patterson
* Aggelos Avgerinos
* Al Snow
* Andre Pankratz
* Andy Brody
* Arnaud Meuret
Expand Down Expand Up @@ -127,6 +128,7 @@ Thanks to everyone else who has contributed to mime-types over the years:
* Nicolas Leger
* Nicholas La Roux
* nycvotes-dev
* Olle Jonsson
* Postmodern
* Richard Hirner
* Richard Hurt
Expand Down
17 changes: 17 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## 3.3.1 / 2019-12-26

* 1 minor bugfix:

* Al Snow fixed a warning with MIME::Types::Logger producing a warning
because Ruby 2.7 introduces numbered block parameters. Because of the
way that the MIME::Types::Logger works for deprecation messages, the
initializer parameters had been named `_1`, `_2`, and `_3`. This has
now been resolved. [#146][]

* Administrivia:

* Olle Jonsson removed an outdated Travis configuration option (`sudo:
false`). [#142][]

## 3.3 / 2019-09-04

* 1 minor enhancement
Expand Down Expand Up @@ -218,6 +233,8 @@
[#137]: https://github.com/mime-types/ruby-mime-types/pull/137
[#139]: https://github.com/mime-types/ruby-mime-types/pull/139
[#141]: https://github.com/mime-types/ruby-mime-types/pull/141
[#142]: https://github.com/mime-types/ruby-mime-types/pull/142
[#146]: https://github.com/mime-types/ruby-mime-types/pull/146
[Code-of-Conduct.md]: Code-of-Conduct_md.html
[Contributor Covenant]: http://contributor-covenant.org
[mime-types-data]: https://github.com/mime-types/mime-types-data
9 changes: 1 addition & 8 deletions README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ home :: https://github.com/mime-types/ruby-mime-types/
code :: https://github.com/mime-types/ruby-mime-types/
bugs :: https://github.com/mime-types/ruby-mime-types/issues
rdoc :: http://rdoc.info/gems/mime-types/
clog :: https://github.com/mime-types/ruby-mime-types/blob/master/History.md
continuous integration :: {<img src="https://travis-ci.org/mime-types/ruby-mime-types.svg?branch=master" alt="Build Status" />}[https://travis-ci.org/mime-types/ruby-mime-types]
test coverage :: {<img src="https://coveralls.io/repos/mime-types/ruby-mime-types/badge.svg?branch=master&service=github" alt="Coverage Status" />}[https://coveralls.io/github/mime-types/ruby-mime-types?branch=master]

Expand Down Expand Up @@ -35,14 +36,6 @@ recommendations, the {IANA Media Types
registry}[https://www.iana.org/assignments/media-types/media-types.xhtml], and
user contributions. It conforms to RFCs 2045 and 2231.

=== mime-types 1.x End of Life

mime-types 1.x is no longer supported as of 2015-10-27.

=== mime-types 2.x End of Life

mime-types 2.x is no longer supported as of 2017-11-21.

=== mime-types 3.x

Users are encouraged to upgrade to mime-types 3.x as soon as is practical.
Expand Down
2 changes: 1 addition & 1 deletion lib/mime/type.rb
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def to_s
end

# The released version of the mime-types library.
VERSION = '3.3'
VERSION = '3.3.1'

include Comparable

Expand Down

0 comments on commit a9b7dd4

Please sign in to comment.