From 6de0914788e2e8552d9c5386086ef74434f52e91 Mon Sep 17 00:00:00 2001 From: Dawa Ometto Date: Mon, 7 Aug 2017 17:54:00 +0200 Subject: [PATCH] Release 4.1.2 --- 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 0c118986..2771d077 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,7 @@ +# 4.1.2 /2017-08-07 + +* Lock to a newer version of gollum-lib to avoid installing an outdated and vulnerable dependency (nokogiri) on ruby 2.0. See https://github.com/gollum/gollum-lib/pull/279. Note: this breaks semantic versioning so those using outdated rubies will discover the problem on update. + # 4.1.0 /2017-03-09 * Added file deletion functionality to file view diff --git a/gollum.gemspec b/gollum.gemspec index fac08b9e..25e60a4f 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 = '4.1.1' - s.date = '2017-04-17' + s.version = '4.1.2' + s.date = '2017-08-07' s.rubyforge_project = 'gollum' s.license = 'MIT' diff --git a/lib/gollum.rb b/lib/gollum.rb index b1a12aa0..a1737118 100644 --- a/lib/gollum.rb +++ b/lib/gollum.rb @@ -16,7 +16,7 @@ require File.expand_path('../gollum/uri_encode_component', __FILE__) $KCODE = 'U' if RUBY_VERSION[0, 3] == '1.8' module Gollum - VERSION = '4.1.1' + VERSION = '4.1.2' def self.assets_path ::File.expand_path('gollum/public', ::File.dirname(__FILE__))