From c7729f81ad511659e081c103e1f9cd5617a21158 Mon Sep 17 00:00:00 2001 From: risk Date: Thu, 21 Jul 2011 16:30:59 -0700 Subject: [PATCH] Release 1.3.1 --- HISTORY.md | 13 +++++++++++++ gollum.gemspec | 4 ++-- lib/gollum.rb | 2 +- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index b4691af3..56bc7815 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,3 +1,16 @@ +# 1.3.1 / 2011-07-21 + +* Major Enhancements + * Allow prefixed ID attributes in headers to support internal linking + (#146). + * Markdown pages are rendered through Redcarpet by default (#176). +* Minor Enhancements + * Remove Edit button on Preview pages (#164). + * Simplify Wiki#inspect and Page#inspect. +* Bug Fixes + * Fixed broken preview functionality (#157). + * Fixed sidebar/footer rendering problems related to whitespace (#145). + # 1.3.0 / 2011-04-25 * Major Enhancements diff --git a/gollum.gemspec b/gollum.gemspec index a266f751..fae620b3 100644 --- a/gollum.gemspec +++ b/gollum.gemspec @@ -4,8 +4,8 @@ Gem::Specification.new do |s| s.rubygems_version = '1.3.5' s.name = 'gollum' - s.version = '1.3.0' - s.date = '2011-04-25' + s.version = '1.3.1' + s.date = '2011-07-21' s.rubyforge_project = 'gollum' s.summary = "A simple, Git-powered wiki." diff --git a/lib/gollum.rb b/lib/gollum.rb index 6ebb85c2..0bcc7d1a 100644 --- a/lib/gollum.rb +++ b/lib/gollum.rb @@ -20,7 +20,7 @@ require File.expand_path('../gollum/albino', __FILE__) require File.expand_path('../gollum/sanitization', __FILE__) module Gollum - VERSION = '1.3.0' + VERSION = '1.3.1' class Error < StandardError; end