summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAustin Ziegler <austin@zieglers.ca>2018-08-12 21:45:08 -0400
committerAustin Ziegler <austin@zieglers.ca>2018-08-12 21:45:08 -0400
commitbeed92cef1f304c967f53314f4668e787fd85128 (patch)
treed25eceb0fb65c43eaf8a9c69b60623ecc954ea1c
parent19d6c5e7ad4e7e6685f5023ece5d76be4fb27b67 (diff)
downloadmime-types-beed92cef1f304c967f53314f4668e787fd85128.tar.gz
Finalize 3.2.2 hotfixv3.2.2
-rw-r--r--History.md6
-rw-r--r--lib/mime/type.rb2
-rw-r--r--mime-types.gemspec6
3 files changed, 10 insertions, 4 deletions
diff --git a/History.md b/History.md
index 58db6fd..3072446 100644
--- a/History.md
+++ b/History.md
@@ -1,3 +1,8 @@
+## 3.2.2 / 2018-08-12
+
+* Hiroto Fukui removed a stray `debugger` statement that I had used in
+ producing v3.2.1. [#137][]
+
## 3.2.1 / 2018-08-12
* A few bugs related to MIME::Types::Container and its use in the
@@ -197,6 +202,7 @@
[#134]: https://github.com/mime-types/ruby-mime-types/issues/134
[#135]: https://github.com/mime-types/ruby-mime-types/pull/135
[#136]: https://github.com/mime-types/ruby-mime-types/issues/136
+[#137]: https://github.com/mime-types/ruby-mime-types/pull/137
[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
diff --git a/lib/mime/type.rb b/lib/mime/type.rb
index 49cf129..61d20ab 100644
--- a/lib/mime/type.rb
+++ b/lib/mime/type.rb
@@ -57,7 +57,7 @@ class MIME::Type
end
# The released version of the mime-types library.
- VERSION = '3.2.1'
+ VERSION = '3.2.2'
include Comparable
diff --git a/mime-types.gemspec b/mime-types.gemspec
index aca1631..c1d8625 100644
--- a/mime-types.gemspec
+++ b/mime-types.gemspec
@@ -1,14 +1,14 @@
# -*- encoding: utf-8 -*-
-# stub: mime-types 3.2.1 ruby lib
+# stub: mime-types 3.2.2 ruby lib
Gem::Specification.new do |s|
s.name = "mime-types".freeze
- s.version = "3.2.1"
+ s.version = "3.2.2"
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib".freeze]
s.authors = ["Austin Ziegler".freeze]
- s.date = "2018-08-12"
+ s.date = "2018-08-13"
s.description = "The mime-types library provides a library and registry for information about\nMIME content type definitions. It can be used to determine defined filename\nextensions for MIME types, or to use filename extensions to look up the likely\nMIME type definitions.\n\nVersion 3.0 is a major release that requires Ruby 2.0 compatibility and removes\ndeprecated functions. The columnar registry format introduced in 2.6 has been\nmade the primary format; the registry data has been extracted from this library\nand put into {mime-types-data}[https://github.com/mime-types/mime-types-data].\nAdditionally, mime-types is now licensed exclusively under the MIT licence and\nthere is a code of conduct in effect. There are a number of other smaller\nchanges described in the History file.".freeze
s.email = ["halostatue@gmail.com".freeze]
s.extra_rdoc_files = ["Code-of-Conduct.md".freeze, "Contributing.md".freeze, "History.md".freeze, "Licence.md".freeze, "Manifest.txt".freeze, "README.rdoc".freeze]