rss 0.3.2 → 0.3.3

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: a2ab2e2eae9a7728b36476373e748eaf66ce357b857156f96f9afc366f747625
4
- data.tar.gz: c92b1582e936b810d4725ca7498656a9e5014e78de7dc541b1a1825eb1b51480
3
+ metadata.gz: 2858076bf1633de3eb979dd67dc495b3a9fc545bcdf959743447d091bc4b2e84
4
+ data.tar.gz: 2b62b0efced5a8d564623e1101b42931bd305d551eaa87b86606a81d07cb2e12
5
5
  SHA512:
6
- metadata.gz: 05e252cb211146849b60519821e591cdd7e26031817c3ef091e706b28db2316550970b015a7fe36ea2c6921a79cdadbf150012de065398ce1a5be494dab97c0d
7
- data.tar.gz: 9beba0ef3f14611f7ddbb62b58797e8f814b64bf454fa4cf1e21276d471464d47f91fad31cf1be51d7f5c2339ded75d2c3608fe20aca5e4851d373ac809de0fe
6
+ metadata.gz: 52d76d49e2e8ce38ce9df1581bfb471dc7bc4778720c99c88f595c7e24a51948766f444f2f0b8bba23f00bdb908c59ac5b0d5cdfdf3ba7ecc30d11269373478a
7
+ data.tar.gz: d70eb85476fc0b1c487ae37185f90e51364dd2167c21a1f17b6e3070e62978706abcc56e1c9361c3ccb9a0cbc19a9d5a535df1c3c83f2f6fbf4e1d26cab96e35
data/NEWS.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # News
2
2
 
3
+ ## 0.3.3 - 2026-06-10
4
+
5
+ ### Improvements
6
+
7
+ * Improved PI content parse performance.
8
+ * GH-66
9
+ * GH-67
10
+ * Patch by Connor Shea.
11
+
12
+ ### Thanks
13
+
14
+ * Connor Shea
15
+
3
16
  ## 0.3.2 - 2025-12-19
4
17
 
5
18
  ### Improvements
data/lib/rss/parser.rb CHANGED
@@ -391,7 +391,7 @@ module RSS
391
391
  ns.fetch(prefix, "")
392
392
  end
393
393
 
394
- CONTENT_PATTERN = /\s*([^=]+)=(["'])([^\2]+?)\2/
394
+ CONTENT_PATTERN = /\G\s*([^=]+)=(["'])([^\2]+?)\2/
395
395
  # Extract the first name="value" pair from content.
396
396
  # Works with single quotes according to the constant
397
397
  # CONTENT_PATTERN. Return a Hash.
data/lib/rss/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module RSS
2
2
  # The current version of RSS
3
- VERSION = "0.3.2"
3
+ VERSION = "0.3.3"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rss
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kouhei Sutou
@@ -95,7 +95,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
95
95
  - !ruby/object:Gem::Version
96
96
  version: '0'
97
97
  requirements: []
98
- rubygems_version: 4.0.2
98
+ rubygems_version: 4.0.10
99
99
  specification_version: 4
100
100
  summary: Family of libraries that support various formats of XML "feeds".
101
101
  test_files: []