Merge pull request #1785 from mojombo/release-1.4.0-updates
This commit is contained in:
commit
446e3e4409
|
@ -1,5 +1,17 @@
|
||||||
## HEAD
|
## HEAD
|
||||||
|
|
||||||
|
### Major Enhancements
|
||||||
|
|
||||||
|
### Minor Enhancements
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
### Development Fixes
|
||||||
|
|
||||||
|
### Site Enhancements
|
||||||
|
|
||||||
|
## 1.4.0 / 2013-12-07
|
||||||
|
|
||||||
### Major Enhancements
|
### Major Enhancements
|
||||||
* Add support for TOML config files (#1765)
|
* Add support for TOML config files (#1765)
|
||||||
|
|
||||||
|
@ -19,7 +31,7 @@
|
||||||
* Fixed case of a word in the Jekyll v1.3.0 release post (#1762)
|
* Fixed case of a word in the Jekyll v1.3.0 release post (#1762)
|
||||||
* Fixed the mime type for the favicon (#1772)
|
* Fixed the mime type for the favicon (#1772)
|
||||||
|
|
||||||
## 1.3.1 / 2013-11/26
|
## 1.3.1 / 2013-11-26
|
||||||
|
|
||||||
### Minor Enhancements
|
### Minor Enhancements
|
||||||
* Add a `--prefix` option to passthrough for the importers (#1669)
|
* Add a `--prefix` option to passthrough for the importers (#1669)
|
||||||
|
|
|
@ -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.3.1'
|
s.version = '1.4.0'
|
||||||
s.license = 'MIT'
|
s.license = 'MIT'
|
||||||
s.date = '2013-11-26'
|
s.date = '2013-12-07'
|
||||||
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."
|
||||||
|
@ -159,6 +159,7 @@ Gem::Specification.new do |s|
|
||||||
site/_posts/2013-10-28-jekyll-1-3-0-rc1-released.markdown
|
site/_posts/2013-10-28-jekyll-1-3-0-rc1-released.markdown
|
||||||
site/_posts/2013-11-04-jekyll-1-3-0-released.markdown
|
site/_posts/2013-11-04-jekyll-1-3-0-released.markdown
|
||||||
site/_posts/2013-11-26-jekyll-1-3-1-released.markdown
|
site/_posts/2013-11-26-jekyll-1-3-1-released.markdown
|
||||||
|
site/_posts/2013-12-07-jekyll-1-4-0-released.markdown
|
||||||
site/css/gridism.css
|
site/css/gridism.css
|
||||||
site/css/normalize.css
|
site/css/normalize.css
|
||||||
site/css/pygments.css
|
site/css/pygments.css
|
||||||
|
@ -212,6 +213,7 @@ Gem::Specification.new do |s|
|
||||||
test/helper.rb
|
test/helper.rb
|
||||||
test/source/+/foo.md
|
test/source/+/foo.md
|
||||||
test/source/.htaccess
|
test/source/.htaccess
|
||||||
|
test/source/_config.dev.toml
|
||||||
test/source/_data/languages.yml
|
test/source/_data/languages.yml
|
||||||
test/source/_data/members.yaml
|
test/source/_data/members.yaml
|
||||||
test/source/_data/products.yml
|
test/source/_data/products.yml
|
||||||
|
|
|
@ -63,7 +63,7 @@ require_all 'jekyll/tags'
|
||||||
SafeYAML::OPTIONS[:suppress_warnings] = true
|
SafeYAML::OPTIONS[:suppress_warnings] = true
|
||||||
|
|
||||||
module Jekyll
|
module Jekyll
|
||||||
VERSION = '1.3.1'
|
VERSION = '1.4.0'
|
||||||
|
|
||||||
# Public: Generate a Jekyll configuration Hash by merging the default
|
# Public: Generate a Jekyll configuration Hash by merging the default
|
||||||
# options with anything in _config.yml, and adding the given options on top.
|
# options with anything in _config.yml, and adding the given options on top.
|
||||||
|
|
|
@ -0,0 +1,30 @@
|
||||||
|
---
|
||||||
|
layout: news_item
|
||||||
|
title: 'Jekyll 1.4.0 Released'
|
||||||
|
date: 2013-12-07 13:55:28 -0600
|
||||||
|
author: mattr-
|
||||||
|
version: 1.4.0
|
||||||
|
categories: [release]
|
||||||
|
---
|
||||||
|
|
||||||
|
About a month after the release of Jekyll v1.3.0, we are releasing
|
||||||
|
Jekyll v1.4.0. This release will be the last non-patch release to support Ruby
|
||||||
|
1.8.7 and our next release will be Jekyll 2.0.0.
|
||||||
|
|
||||||
|
Here are a few things we think you'll want to know about this release:
|
||||||
|
|
||||||
|
* TOML is now a supported markup language for config files.
|
||||||
|
|
||||||
|
* Maruku has been updated to 0.7.0 which provides some new features and
|
||||||
|
a ton of bugfixes over the previous 0.6.x releases.
|
||||||
|
|
||||||
|
* Non-`gem` Plugins are now sorted alphabetically by filename before they're
|
||||||
|
processed, which can provide a rudimentary way to establish a load order for
|
||||||
|
plugins.
|
||||||
|
|
||||||
|
For a full run-down, visit our [change log](/docs/history/)!
|
||||||
|
|
||||||
|
As always, Jekyll wouldn't be possible without the contributions from
|
||||||
|
others in the Jekyll community. We'd like to thank the following people
|
||||||
|
for contributing to this release: Anatol Broder, David Sawyer, Greg
|
||||||
|
Karékinian, Jordon Bedwell, Matthew Iversen, Persa Zula, and Yi Zeng.
|
|
@ -5,7 +5,28 @@ permalink: /docs/history/
|
||||||
prev_section: contributing
|
prev_section: contributing
|
||||||
---
|
---
|
||||||
|
|
||||||
## 1.3.1 / 2013-11/26
|
## 1.4.0 / 2013-12-07
|
||||||
|
|
||||||
|
### Major Enhancements
|
||||||
|
- Add support for TOML config files ([#1765]({{ site.repository }}/issues/1765))
|
||||||
|
|
||||||
|
### Minor Enhancements
|
||||||
|
- Sort plugins as a way to establish a load order ([#1682]({{ site.repository }}/issues/1682))
|
||||||
|
- Update Maruku to 0.7.0 ([#1775]({{ site.repository }}/issues/1775))
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
- Add a space between two words in a Pagination warning message ([#1769]({{ site.repository }}/issues/1769))
|
||||||
|
- Upgrade `toml` gem to `v0.1.0` to maintain compat with Ruby 1.8.7 ([#1778]({{ site.repository }}/issues/1778))
|
||||||
|
|
||||||
|
### Development Fixes
|
||||||
|
- Remove some whitespace in the code ([#1755]({{ site.repository }}/issues/1755))
|
||||||
|
- Remove some duplication in the reading of posts and drafts ([#1779]({{ site.repository }}/issues/1779))
|
||||||
|
|
||||||
|
### Site Enhancements
|
||||||
|
- Fixed case of a word in the Jekyll v1.3.0 release post ([#1762]({{ site.repository }}/issues/1762))
|
||||||
|
- Fixed the mime type for the favicon ([#1772]({{ site.repository }}/issues/1772))
|
||||||
|
|
||||||
|
## 1.3.1 / 2013-11-26
|
||||||
|
|
||||||
### Minor Enhancements
|
### Minor Enhancements
|
||||||
- Add a `--prefix` option to passthrough for the importers ([#1669]({{ site.repository }}/issues/1669))
|
- Add a `--prefix` option to passthrough for the importers ([#1669]({{ site.repository }}/issues/1669))
|
||||||
|
|
Loading…
Reference in New Issue