Compare commits

...

6 Commits

Author SHA1 Message Date
Matt Rogers
aa5c98d281 Release 1.4.1 2013-12-09 20:56:36 -06:00
Matt Rogers
eb54b7f90d Allow releases from the v1-stable branch 2013-12-09 20:56:22 -06:00
Matt Rogers
e92b67dfb9 Bump the gemspec version to 1.4.1 2013-12-09 20:55:56 -06:00
Matt Rogers
3a870fd09e Prep for a 1.4.1 release 2013-12-09 20:36:19 -06:00
Matt Rogers
3607ac5e5f Update history to reflect merge of #1796 2013-12-09 20:25:15 -06:00
Parker Moore
ca95e75976 Reject nil entries in Site#read_things 2013-12-09 20:25:04 -06:00
5 changed files with 21 additions and 6 deletions

View File

@@ -10,6 +10,19 @@
### Site Enhancements
## 1.4.1 / 2013-12-09
### Major Enhancements
### Minor Enhancements
### Bug Fixes
* Don't allow nil entries when loading posts (#1796)
### Development Fixes
### Site Enhancements
## 1.4.0 / 2013-12-07
### Major Enhancements

View File

@@ -252,8 +252,8 @@ end
#############################################################################
task :release => :build do
unless `git branch` =~ /^\* master$/
puts "You must be on the master branch to release!"
unless `git branch` =~ /^(\* master|\* v1-stable)$/
puts "You must be on the master branch or the v1-stable branch to release!"
exit!
end
sh "git commit --allow-empty -m 'Release #{version}'"

View File

@@ -4,9 +4,9 @@ Gem::Specification.new do |s|
s.rubygems_version = '1.3.5'
s.name = 'jekyll'
s.version = '1.4.0'
s.version = '1.4.1'
s.license = 'MIT'
s.date = '2013-12-07'
s.date = '2013-12-09'
s.rubyforge_project = 'jekyll'
s.summary = "A simple, blog aware, static site generator."

View File

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

View File

@@ -193,8 +193,10 @@ module Jekyll
end
def read_things(dir, magic_dir, klass)
things = get_entries(dir, magic_dir).map do |entry|
get_entries(dir, magic_dir).map do |entry|
klass.new(self, self.source, dir, entry) if klass.valid?(entry)
end.reject do |entry|
entry.nil?
end
end