Prep for the 1.3.1 release
This commit is contained in:
parent
4cc0bdf8ff
commit
91a4c5611e
|
@ -2,6 +2,16 @@
|
|||
|
||||
### Major Enhancements
|
||||
|
||||
### Minor Enhancements
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
### Development Fixes
|
||||
|
||||
### Site Enhancements
|
||||
|
||||
## 1.3.1 / 2013-11/26
|
||||
|
||||
### Minor Enhancements
|
||||
* Add a `--prefix` option to passthrough for the importers (#1669)
|
||||
* Push the paginator plugin lower in the plugin priority order so
|
||||
|
|
|
@ -4,9 +4,9 @@ Gem::Specification.new do |s|
|
|||
s.rubygems_version = '1.3.5'
|
||||
|
||||
s.name = 'jekyll'
|
||||
s.version = '1.3.0'
|
||||
s.version = '1.3.1'
|
||||
s.license = 'MIT'
|
||||
s.date = '2013-11-04'
|
||||
s.date = '2013-11-26'
|
||||
s.rubyforge_project = 'jekyll'
|
||||
|
||||
s.summary = "A simple, blog aware, static site generator."
|
||||
|
@ -95,6 +95,7 @@ Gem::Specification.new do |s|
|
|||
lib/jekyll/core_ext.rb
|
||||
lib/jekyll/deprecator.rb
|
||||
lib/jekyll/draft.rb
|
||||
lib/jekyll/entry_filter.rb
|
||||
lib/jekyll/errors.rb
|
||||
lib/jekyll/excerpt.rb
|
||||
lib/jekyll/filters.rb
|
||||
|
@ -273,6 +274,7 @@ Gem::Specification.new do |s|
|
|||
test/test_configuration.rb
|
||||
test/test_convertible.rb
|
||||
test/test_core_ext.rb
|
||||
test/test_entry_filter.rb
|
||||
test/test_excerpt.rb
|
||||
test/test_filters.rb
|
||||
test/test_generated_site.rb
|
||||
|
|
|
@ -62,7 +62,7 @@ require_all 'jekyll/tags'
|
|||
SafeYAML::OPTIONS[:suppress_warnings] = true
|
||||
|
||||
module Jekyll
|
||||
VERSION = '1.3.0'
|
||||
VERSION = '1.3.1'
|
||||
|
||||
# Public: Generate a Jekyll configuration Hash by merging the default
|
||||
# options with anything in _config.yml, and adding the given options on top.
|
||||
|
|
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
layout: news_item
|
||||
title: 'Jekyll 1.3.1 Released'
|
||||
date: 2013-11-26 19:52:20 -0600
|
||||
author: mattr-
|
||||
version: 1.3.1
|
||||
categories: [release]
|
||||
---
|
||||
|
||||
Just in time for the US holiday Thanksgiving, we're releasing version
|
||||
1.3.1 of Jekyll to address some of the issues seen since the
|
||||
release of 1.3.0.
|
||||
|
||||
In addition to a couple of other smaller bug fixes, the biggest thing
|
||||
we've fixed is an issue with the `--watch` option with Ruby 1.8.7. For a
|
||||
full run-down, visit our [change log](/docs/history/)!
|
||||
|
||||
Thanks to all the people who have contributed to this release! They are
|
||||
(in alphabetical order): Abhi Yerra, Anatol Broder, Andreas Möller, Greg
|
||||
Karékinian, Sam Rayner, Santeri Paavolainen, Shigeya Suzuki, Yihang Ho,
|
||||
albertogg, andrewhavens, maul.esel, and thomasdao
|
|
@ -5,6 +5,39 @@ permalink: /docs/history/
|
|||
prev_section: contributing
|
||||
---
|
||||
|
||||
## 1.3.1 / 2013-11/26
|
||||
|
||||
### Minor Enhancements
|
||||
- Add a `--prefix` option to passthrough for the importers ([#1669]({{ site.repository }}/issues/1669))
|
||||
- Push the paginator plugin lower in the plugin priority order so
|
||||
other plugins run before it ([#1759]({{ site.repository }}/issues/1759))
|
||||
|
||||
### Bug Fixes
|
||||
- Fix the include tag when ran in a loop ([#1726]({{ site.repository }}/issues/1726))
|
||||
- Fix errors when using `--watch` on 1.8.7 ([#1730]({{ site.repository }}/issues/1730))
|
||||
- Specify where the include is called from if an included file is
|
||||
missing ([#1746]({{ site.repository }}/issues/1746))
|
||||
|
||||
### Development Fixes
|
||||
- Extract `Site#filter_entries` into its own object ([#1697]({{ site.repository }}/issues/1697))
|
||||
- Enable Travis' bundle caching ([#1734]({{ site.repository }}/issues/1734))
|
||||
- Remove trailing whitespace in some files ([#1736]({{ site.repository }}/issues/1736))
|
||||
- Fix a duplicate test name ([#1754]({{ site.repository }}/issues/1754))
|
||||
|
||||
### Site Enhancements
|
||||
- Update link to example Rakefile to point to specific commit ([#1741]({{ site.repository }}/issues/1741))
|
||||
- Fix drafts docs to indicate that draft time is based on file modification
|
||||
time, not `Time.now` ([#1695]({{ site.repository }}/issues/1695))
|
||||
- Add `jekyll-monthly-archive-plugin` and `jekyll-category-archive-plugin` to
|
||||
list of third-party plugins ([#1693]({{ site.repository }}/issues/1693))
|
||||
- Add `jekyll-asset-path-plugin` to list of third-party plugins ([#1670]({{ site.repository }}/issues/1670))
|
||||
- Add `emoji-for-jekyll` to list of third-part plugins ([#1708]({{ site.repository }}/issues/1708))
|
||||
- Fix previous section link on plugins page to point to pagination page ([#1707]({{ site.repository }}/issues/1707))
|
||||
- Add `org-mode` converter plugin to third-party plugins ([#1711]({{ site.repository }}/issues/1711))
|
||||
- Point "Blog migrations" page to http://import.jekyllrb.com ([#1732]({{ site.repository }}/issues/1732))
|
||||
- Add docs for `post_url` when posts are in subdirectories ([#1718]({{ site.repository }}/issues/1718))
|
||||
- Update the docs to point to `example.com` ([#1448]({{ site.repository }}/issues/1448))
|
||||
|
||||
## 1.3.0 / 2013-11-04
|
||||
|
||||
### Major Enhancements
|
||||
|
|
Loading…
Reference in New Issue