Updated version to 1.0.0.beta3.

This commit is contained in:
Parker Moore 2013-04-04 16:14:54 +02:00
parent d3e92183fd
commit 28097a9ebb
2 changed files with 5 additions and 3 deletions

View File

@ -4,9 +4,9 @@ Gem::Specification.new do |s|
s.rubygems_version = '1.3.5' s.rubygems_version = '1.3.5'
s.name = 'jekyll' s.name = 'jekyll'
s.version = '1.0.0.beta2' s.version = '1.0.0.beta3'
s.license = 'MIT' s.license = 'MIT'
s.date = '2013-03-19' s.date = '2013-04-04'
s.rubyforge_project = 'jekyll' s.rubyforge_project = 'jekyll'
s.summary = "A simple, blog aware, static site generator." s.summary = "A simple, blog aware, static site generator."
@ -202,6 +202,8 @@ Gem::Specification.new do |s|
test/source/foo/_posts/bar/2008-12-12-topical-post.textile test/source/foo/_posts/bar/2008-12-12-topical-post.textile
test/source/index.html test/source/index.html
test/source/sitemap.xml test/source/sitemap.xml
test/source/symlink-test/symlinked-dir
test/source/symlink-test/symlinked-file
test/source/win/_posts/2009-05-24-yaml-linebreak.markdown test/source/win/_posts/2009-05-24-yaml-linebreak.markdown
test/source/z_category/_posts/2008-9-23-categories.textile test/source/z_category/_posts/2008-9-23-categories.textile
test/suite.rb test/suite.rb

View File

@ -52,7 +52,7 @@ require_all 'jekyll/tags'
SafeYAML::OPTIONS[:suppress_warnings] = true SafeYAML::OPTIONS[:suppress_warnings] = true
module Jekyll module Jekyll
VERSION = '1.0.0.beta2' VERSION = '1.0.0.beta3'
# Default options. Overriden by values in _config.yml. # Default options. Overriden by values in _config.yml.
# Strings rather than symbols are used for compatability with YAML. # Strings rather than symbols are used for compatability with YAML.