bibtex-ruby 6.0.0 → 6.2.0

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: d20ff3c667743829aca52621d06ed9817e6889f78cc4738d036f058a7f191836
4
- data.tar.gz: 8810c0a5aa024a5b7150b02326ac00ddda0657098275a41cd0e9009c19bbd8ea
3
+ metadata.gz: 333784b37e105aee5f6f28e49793bd6cb4d969da35f34577007a48d496de7f5d
4
+ data.tar.gz: c2d544d145cfd202c099246ce91432746c535e49b38df9436adf043d4353e937
5
5
  SHA512:
6
- metadata.gz: cab60663c560854377d34d87934365002b2cdeabbdb7aa6bdf3df42a962ff94abfc5e647629945b065a48ef83f36c1dc8a275e62c1b98cee824b9f89870cbc5b
7
- data.tar.gz: a0f39e0ac274f36a4aeaa911a76087f5480819c737abba310ce17fb105528816ae68a9311bfac202fd1ae71e4fe43cfe63fb37a2be652bf90945174e8756ca17
6
+ metadata.gz: fa8ff3fe9544b77d3c0de73e82ae1ff95f7708f0d63fa81b6e0a99e536170b550a275bb5321048463d4e301a31d467657b2f80876bc50e380498299fc0a99a2e
7
+ data.tar.gz: 4e08f81624ebec89855ad80b3cc7f5d1b7a40ca9bc64dcec44d8c091a3e38d4a93e9b0c8733954a8ff910c87ecda01d1f6e84e287dbf7f46afb75eae2ea0339f
data/Gemfile CHANGED
@@ -6,21 +6,15 @@ gem 'json', '~>2.0', platforms: %i[mri_18 jruby]
6
6
  gem 'rdf', '~>3.0'
7
7
  gem 'rdf-vocab', '~>3.0'
8
8
 
9
- gem 'rexml', '~>3.0'
9
+ gem 'rexml', '~>3.2'
10
10
 
11
11
  group :debug do
12
- gem 'byebug', require: false, platforms: :mri
13
- gem 'ruby-debug', require: false, platforms: :jruby
12
+ gem 'debug', '>= 1.0', require: false, platforms: :mri
14
13
  end
15
14
 
16
15
  group :test do
17
16
  gem 'cucumber'
18
17
  gem 'minitest', require: false
19
- gem 'unicode', '~>0.4', platforms: %i[mswin mingw mri]
20
- end
21
-
22
- group :extra do
23
- gem 'redcarpet', platforms: [:ruby]
24
18
  end
25
19
 
26
20
  group :profile do
@@ -33,8 +27,6 @@ group :coverage do
33
27
  end
34
28
 
35
29
  group :development do
36
- gem 'iconv', platforms: [:ruby]
37
- gem 'racc'
38
30
  gem 'rake'
39
31
  gem 'yard'
40
32
  end
data/History.txt CHANGED
@@ -1,28 +1,68 @@
1
+ * Add official support for Ruby 3.1
2
+ * Remove official support for Ruby < 2.7, as they reached their End-of-Life
3
+
4
+ 6.0.0 / 2021-01-07
5
+ ==================
6
+
7
+ * Make bibtexml converter optional
8
+
9
+ 5.1.7 / 2021-01-07
10
+ ==================
11
+
12
+ * Add support for Ruby 3.0 (@skalee)
13
+
14
+ 5.1.6 / 2020-12-02
15
+ ==================
16
+
17
+ * Ignore case when matching types
18
+ * Remove official support for Ruby 2.4
19
+
20
+ 5.1.5 / 2020-10-14
21
+ ==================
22
+
23
+ 5.1.4 / 2020-04-14
24
+ ==================
25
+
26
+ 5.1.3 / 2020-04-06
27
+ ==================
28
+
29
+ 5.1.2 / 2020-02-27
30
+ ==================
31
+
32
+ 5.1.1 / 2020-01-17
33
+ ==================
34
+
1
35
  5.1.0 / 2020-01-17
2
36
  ==================
37
+
3
38
  * Use File.read instead of Kernel.open in BibTeX.open
4
39
  * Fix Ruby 2.7 deprecation warnings
5
40
 
6
41
  5.0.0 / 2019-06-12
7
42
  ==================
43
+
8
44
  * Dropped support for Ruby < 2.3
9
45
 
10
46
  4.2.0 / 2015-02-02
11
47
  ==================
48
+
12
49
  * Fixed queries being whitespace sensitive
13
50
 
14
51
  4.0.9 / 2015-01-20
15
52
  ==================
53
+
16
54
  * Improve BibTeX::Value comparison
17
55
 
18
56
  4.0.8 / 2015-01-12
19
57
  ==================
58
+
20
59
  * Ruby 2.2 support
21
60
  * Added Entry#month_numeric
22
61
  * Added support for numeric values
23
62
 
24
63
  4.0.4 / 2014-10-10
25
64
  ==================
65
+
26
66
  * added !~ matcher for queries (@temporaer)
27
67
 
28
68
  4.0.0 / 2014-07-08