From 9012dee888d28edb1840055673a8bdb7bfffd5ac Mon Sep 17 00:00:00 2001 From: Dawa Ometto Date: Sun, 18 Apr 2021 13:43:00 +0200 Subject: [PATCH] Release 5.2.3 --- HISTORY.md | 4 ++++ gollum.gemspec | 4 ++-- lib/gollum.rb | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index f0eed2bd..0c7fa577 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,7 @@ +# 5.2.3 2021-04-18 + +* Fix bug preventing page titles from being displayed + # 5.2.1 2021-02-25 * Fix include call to a missing asset (@benjaminwil). This caused slow first page loads on JRuby. diff --git a/gollum.gemspec b/gollum.gemspec index 2d0bcead..d6e96522 100644 --- a/gollum.gemspec +++ b/gollum.gemspec @@ -5,8 +5,8 @@ Gem::Specification.new do |s| s.required_ruby_version = '>= 1.9' s.name = 'gollum' - s.version = '5.2.2' - s.date = '2021-03-27' + s.version = '5.2.3' + s.date = '2021-04-18' s.license = 'MIT' s.summary = 'A simple, Git-powered wiki.' diff --git a/lib/gollum.rb b/lib/gollum.rb index 9c5d176f..5888b000 100644 --- a/lib/gollum.rb +++ b/lib/gollum.rb @@ -12,7 +12,7 @@ require 'rhino' if RUBY_PLATFORM == 'java' require File.expand_path('../gollum/uri_encode_component', __FILE__) module Gollum - VERSION = '5.2.2' + VERSION = '5.2.3' def self.assets_path ::File.expand_path('gollum/public', ::File.dirname(__FILE__))