mini_mime 1.1.1 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 55bbfe99751f28efbb29008a1cbff40f7e16f6f376aa08be5b0928ca19e57fe3
4
- data.tar.gz: e99bc29ec1a02a7ce08fe3cc6d997cdce7a073750ba728d97400fe41a9024799
3
+ metadata.gz: 69ca27284c4e5ea1ed0cb7168b4f607f9b990f51ab4359e84b2e885e728b076d
4
+ data.tar.gz: fcea561edc2c9a3be7b6755cdb43b0b3cde7f6c34090f6271daf1760fd8ced2a
5
5
  SHA512:
6
- metadata.gz: f6b99913c9255b3d71114bdb8c221d583b5d257669cb4f3f06ea9826143906a184f81b34e62b8c6502a7f65827709e4b0c5634323c2f6636aa05c776fd6df294
7
- data.tar.gz: 3a61ba35ba3cba331415df05034724025e917b6fccfc9aa78268a9cffe44887758f8c049bb67c4e4635f88a180ec93bd7ce2339130a034a361a3a54503b432a0
6
+ metadata.gz: b65b3456107b00dcb2891f5b86cb4c134a7bdd187043670edbd2f8a7c6c8034b66efd40a5fd2a56711b53bb34249c792d88315d04b59327a775ce5483294769e
7
+ data.tar.gz: 1d488dc9b02a5a871dc313ab72860813b2e7245f9e889896e8072afaa5e31592850baa21249424765d7047c043431f61836a76078fc7b1ecc195c4f68465f97d
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ 11-10-2021
2
+ - Version 1.1.2
3
+ - update mime types from upstream
4
+
1
5
  23-08-2021
2
6
  - Version 1.1.1
3
7
  - update mime types from upstream
@@ -812,6 +812,7 @@ si text/vnd.wap.si
812
812
  sl text/vnd.wap.sl quoted-printable
813
813
  wml text/vnd.wap.wml quoted-printable
814
814
  wmls text/vnd.wap.wmlscript quoted-printable
815
+ vtt text/vtt quoted-printable
815
816
  asm text/x-asm quoted-printable
816
817
  c text/x-c quoted-printable
817
818
  coffee text/x-coffescript 8bit
data/lib/db/ext_mime.db CHANGED
@@ -1055,6 +1055,7 @@ vsf application/vnd.vsf
1055
1055
  vss application/vnd.visio base64
1056
1056
  vst application/vnd.visio base64
1057
1057
  vsw application/vnd.visio base64
1058
+ vtt text/vtt quoted-printable
1058
1059
  vtu model/vnd.vtu base64
1059
1060
  vxml application/voicexml+xml base64
1060
1061
  w3d application/x-director base64
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module MiniMime
3
- VERSION = "1.1.1"
3
+ VERSION = "1.1.2"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mini_mime
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sam Saffron
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-08-23 00:00:00.000000000 Z
11
+ date: 2021-10-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
OSZAR »