diff --git a/HISTORY.md b/HISTORY.md index 159a19a1..04190a13 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,8 @@ +# 5.2.2 / 2023-01-18 + +* Bugfix release: set Nokogiri default XHTML conversion options more relaibly. See https://github.com/sparklemotion/nokogiri/issues/2761 + + # 5.2.1 / 2022-09-13 * Fixed: 'controls' attribute in audio and video tags should not be sanitized. #430 (@dometto) diff --git a/Rakefile b/Rakefile index d874eb08..aa17492e 100644 --- a/Rakefile +++ b/Rakefile @@ -126,7 +126,7 @@ task :release => :build do Rake::Task[:changelog].execute sh "git commit --allow-empty -a -m 'Release #{version}'" sh "git pull --rebase origin master" - sh "git tag v#{version}" + sh "git tag -n v#{version}" sh "git push origin master" sh "git push origin v#{version}" sh "gem push pkg/#{name}-#{version}.gem" diff --git a/lib/gollum-lib/version.rb b/lib/gollum-lib/version.rb index 54ac1399..14e9b9ae 100644 --- a/lib/gollum-lib/version.rb +++ b/lib/gollum-lib/version.rb @@ -1,5 +1,5 @@ module Gollum module Lib - VERSION = '5.2.1' + VERSION = '5.2.2' end end