Skip to content

Commit 7514994

Browse files
committed
chore: bump version to 2.0.0
Breaking changes and new features since 1.3.3: - Normalize all strings to UTF-8 encoding (#28) - Skip empty/blank tags to prevent regex hang (#16) - Use Dir.glob for gemspec files (#30, #3) - Support array_tags option for multiple values (#10) - Support attributes on item/entry tags (#35) - Support attributes on channel/feed tags (#38) - Update LICENSE with current FSF text (#26) - Modernize CI/CD with GitHub Actions and RuboCop
1 parent 2d15adc commit 7514994

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

lib/simple-rss.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
require "time"
55

66
class SimpleRSS
7-
VERSION = "1.3.3".freeze
7+
VERSION = "2.0.0".freeze
88

99
# @rbs @items: Array[Hash[Symbol, untyped]]
1010
# @rbs @source: String

simple-rss.gemspec

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
Gem::Specification.new do |s|
22
s.name = "simple-rss"
3-
s.version = "1.3.3"
4-
s.version = "#{s.version}-alpha-#{ENV['TRAVIS_BUILD_NUMBER']}" if ENV["TRAVIS"]
5-
s.date = "2015-08-17"
3+
s.version = "2.0.0"
4+
s.date = "2025-12-28"
65
s.summary = "A simple, flexible, extensible, and liberal RSS and Atom reader for Ruby. It is designed to be backwards compatible with the standard RSS parser, but will never do RSS generation."
76
s.email = "lucas@rufy.com"
87
s.homepage = "http://github.com/cardmagic/simple-rss"

0 commit comments

Comments
 (0)