Compare commits

...

3 Commits

Author SHA1 Message Date
Matt Rogers
8a9f8dce49 Release 1.0.4 2013-07-25 12:42:09 -05:00
Matt Rogers
5c4d995b9d Update history to reflect merge of #1349 on the 1_0_x-branch 2013-07-25 12:34:50 -05:00
Ben Balter
5ad3f7e215 require liquid >= 2.5.1 2013-07-25 12:29:52 -05:00
3 changed files with 6 additions and 9 deletions

View File

@@ -1,10 +1,7 @@
## HEAD
## 1.0.4 / 2013-07-24
### Major Enhancements
### Minor Enhancements
### Bug Fixes
### Site Enhancements
### Development Fixes
* Require Liquid 2.5.1 (#1349)
## 1.0.3 / 2013-06-07

View File

@@ -4,9 +4,9 @@ Gem::Specification.new do |s|
s.rubygems_version = '1.3.5'
s.name = 'jekyll'
s.version = '1.0.3'
s.version = '1.0.4'
s.license = 'MIT'
s.date = '2013-06-07'
s.date = '2013-07-25'
s.rubyforge_project = 'jekyll'
s.summary = "A simple, blog aware, static site generator."
@@ -23,7 +23,7 @@ Gem::Specification.new do |s|
s.rdoc_options = ["--charset=UTF-8"]
s.extra_rdoc_files = %w[README.textile LICENSE]
s.add_runtime_dependency('liquid', "~> 2.3")
s.add_runtime_dependency('liquid', "~> 2.5.1")
s.add_runtime_dependency('classifier', "~> 1.3")
s.add_runtime_dependency('directory_watcher', "~> 1.4.1")
s.add_runtime_dependency('maruku', "~> 0.5")

View File

@@ -57,7 +57,7 @@ require_all 'jekyll/tags'
SafeYAML::OPTIONS[:suppress_warnings] = true
module Jekyll
VERSION = '1.0.3'
VERSION = '1.0.4'
# Public: Generate a Jekyll configuration Hash by merging the default
# options with anything in _config.yml, and adding the given options on top.