Skip to content

Commit

Permalink
4.3.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
heliocola committed Nov 2, 2023
1 parent 2600d93 commit 8297da8
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
== 4.3.3 / Nov 2nd, 2023

* Add tests for CVE-2023-31606 [Helio Cola]
* Fix rake compile [Helio Cola and Faria Education Group]
* Fix CVE-2023-31606 (ReDOS possible in the sanitize_html function) [Kornelius Kalnbach and Merbin Russel]

== 4.3.2 / May 23rd, 2016

* Fix additional case for CVE-2012-6684 [Joshua Siler]
Expand Down
2 changes: 1 addition & 1 deletion lib/redcloth/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module RedCloth
module VERSION
MAJOR = 4
MINOR = 3
TINY = 2
TINY = 3
# RELEASE_CANDIDATE = 0

STRING = [MAJOR, MINOR, TINY].compact.join('.')
Expand Down
15 changes: 7 additions & 8 deletions tasks/release.rake
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
namespace :release do
desc 'Push all gems to rubygems.org'
# git tag and push tag
# git tag vx.x.x
# git push --follow-tags
# branch into stable vx.x branch
# change version in version.rb
# update changelog
# run rake test
# 1. run rake test
# 2. update changelog
# 3. change version in version.rb
# 4. branch into stable vx.x branch
# 5. git tag and push tag
# 5.1. git tag vx.x.x
# 5.2. git push --follow-tags

task :gem do
sh("gem build redcloth.gemspec")
sh("gem push RedCloth-*.gem")
end
end

0 comments on commit 8297da8

Please sign in to comment.