bibtex-ruby 6.0.0 → 6.1.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: fd8273ecbfc910f5944b9f471cf8eeda31e2052fbeeaf1c12335420f25d09371
4
+ data.tar.gz: 11000b7d5bca33dc41a3c3d49abaeccecaaefb0457fa815998cbbaab6e1b2bb4
5
5
  SHA512:
6
- metadata.gz: cab60663c560854377d34d87934365002b2cdeabbdb7aa6bdf3df42a962ff94abfc5e647629945b065a48ef83f36c1dc8a275e62c1b98cee824b9f89870cbc5b
7
- data.tar.gz: a0f39e0ac274f36a4aeaa911a76087f5480819c737abba310ce17fb105528816ae68a9311bfac202fd1ae71e4fe43cfe63fb37a2be652bf90945174e8756ca17
6
+ metadata.gz: c3403927d721d510d21b9ce5b0ea9b3507291cea43b62a4de00601b706d19401167e33d5696a8f6db1a276b9054e1d6b287f7de0b651ce9341609e83cde40986
7
+ data.tar.gz: d2cea6ef667ffc50872c183a6f4dc6cf74039597987fea0747858cdb7850536b9af285e67f27a31748c691876d5029b97c8eb5525379711eab5b8c5bce8118b2
data/Gemfile CHANGED
@@ -6,11 +6,10 @@ 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
@@ -34,7 +33,6 @@ end
34
33
 
35
34
  group :development do
36
35
  gem 'iconv', platforms: [:ruby]
37
- gem 'racc'
38
36
  gem 'rake'
39
37
  gem 'yard'
40
38
  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