Release 1.3.0

This commit is contained in:
rick
2011-04-25 20:59:57 -04:00
parent 2ebed41225
commit 748d76dff1
3 changed files with 22 additions and 5 deletions
+19 -2
View File
@@ -1,4 +1,21 @@
# HEAD # 1.3.0 / 2011-04-25
* Major Enhancements
* Listing of all Pages
* Support for running Gollum under a separate branch.
* Minor Enhancements
* Fix a security issue with rendering Mathjax.
# 1.2.0 / 2011-03-11
* Major Enhancements
* Major HTML/CSS/JS overhaul.
* Add Sidebars (similar to Footers).
* Add commit reverts.
* Minor Enhancements
* Optimization in source code highlighting, resulting in a huge
decrease in rendering time.
* Security fixes related to source code highlighting.
* Major Enhancements * Major Enhancements
* Add Page sidebars, similar to Page footers. * Add Page sidebars, similar to Page footers.
@@ -51,4 +68,4 @@
# 1.0.0 / 2010-08-12 # 1.0.0 / 2010-08-12
* Open Source Birthday! * Open Source Birthday!
+2 -2
View File
@@ -4,8 +4,8 @@ Gem::Specification.new do |s|
s.rubygems_version = '1.3.5' s.rubygems_version = '1.3.5'
s.name = 'gollum' s.name = 'gollum'
s.version = '1.2.0' s.version = '1.3.0'
s.date = '2011-04-15' s.date = '2011-04-25'
s.rubyforge_project = 'gollum' s.rubyforge_project = 'gollum'
s.summary = "A simple, Git-powered wiki." s.summary = "A simple, Git-powered wiki."
+1 -1
View File
@@ -20,7 +20,7 @@ require 'gollum/albino'
require 'gollum/sanitization' require 'gollum/sanitization'
module Gollum module Gollum
VERSION = '1.2.0' VERSION = '1.3.0'
class Error < StandardError; end class Error < StandardError; end