summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAustin Ziegler <austin@zieglers.ca>2013-02-09 11:41:38 -0500
committerAustin Ziegler <austin@zieglers.ca>2013-02-09 11:41:38 -0500
commit19778526f58040e2076573e0cb94a7c557416a6f (patch)
tree88c67e2de7dc64468ad659f3e21e0d86b253ff1d
parent4d4bb0e527108447216912f6678b953fb03a0c87 (diff)
downloadgit-19778526f58040e2076573e0cb94a7c557416a6f.tar.gz
Documenting release 1.21; bumping version.
-rw-r--r--History.rdoc10
-rw-r--r--README.rdoc2
-rw-r--r--lib/mime/types.rb2
3 files changed, 12 insertions, 2 deletions
diff --git a/History.rdoc b/History.rdoc
index 203e7d5b39..ad314c263d 100644
--- a/History.rdoc
+++ b/History.rdoc
@@ -1,3 +1,13 @@
+== 1.21 / 2013-02-09
+
+* New MIME Types:
+ * Various new or updated MIME types by Garret Alfert:
+ application/vnd.ms-fontobject, .eot; application/x-chrome-extension, .crx;
+ application/x-web-app-manifest\+json, .webapp; application/x-xpinstall,
+ .xpi; image/svg\+xml, .svg, .svgz; image/webp, .webp; text/cache-manifest,
+ .appcache, .manifest. https://github.com/halostatue/mime-types/pull/24
+* Fixed some Manifest.txt related madness on Travis.
+
== 1.20.1 / 2013-01-26
* New MIME Types:
diff --git a/README.rdoc b/README.rdoc
index 58fd310612..75840e35d4 100644
--- a/README.rdoc
+++ b/README.rdoc
@@ -8,7 +8,7 @@ rdoc :: http://mime-types.rubyforge.org/
== Description
This library allows for the identification of a file's likely MIME content
-type. This is release 1.20.1 with new MIME types. The identification of MIME
+type. This is release 1.21 with new MIME types. The identification of MIME
content type is based on a file's filename extensions.
MIME types are used in MIME-compliant communications, as in e-mail or
diff --git a/lib/mime/types.rb b/lib/mime/types.rb
index 27d7dfd110..9e774823bc 100644
--- a/lib/mime/types.rb
+++ b/lib/mime/types.rb
@@ -25,7 +25,7 @@ module MIME
#
class Type
# The released version of Ruby MIME::Types
- VERSION = '1.20.1'
+ VERSION = '1.21'
include Comparable