commit
a8c03ae3ec
|
@ -2,6 +2,16 @@
|
||||||
|
|
||||||
### Major Enhancements
|
### Major Enhancements
|
||||||
|
|
||||||
|
### Minor Enhancements
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
### Development Fixes
|
||||||
|
|
||||||
|
### Site Enhancements
|
||||||
|
|
||||||
|
## 1.2.1 / 2013-09-14
|
||||||
|
|
||||||
### Minor Enhancements
|
### Minor Enhancements
|
||||||
* Print better messages for detached server. Mute output on detach. (#1518)
|
* Print better messages for detached server. Mute output on detach. (#1518)
|
||||||
* Disable reverse lookup when running `jekyll serve` (#1363)
|
* Disable reverse lookup when running `jekyll serve` (#1363)
|
||||||
|
|
|
@ -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.2.0'
|
s.version = '1.2.1'
|
||||||
s.license = 'MIT'
|
s.license = 'MIT'
|
||||||
s.date = '2013-09-06'
|
s.date = '2013-09-14'
|
||||||
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."
|
||||||
|
@ -149,6 +149,7 @@ Gem::Specification.new do |s|
|
||||||
site/_posts/2013-07-25-jekyll-1-0-4-released.markdown
|
site/_posts/2013-07-25-jekyll-1-0-4-released.markdown
|
||||||
site/_posts/2013-07-25-jekyll-1-1-2-released.markdown
|
site/_posts/2013-07-25-jekyll-1-1-2-released.markdown
|
||||||
site/_posts/2013-09-06-jekyll-1-2-0-released.markdown
|
site/_posts/2013-09-06-jekyll-1-2-0-released.markdown
|
||||||
|
site/_posts/2013-09-14-jekyll-1-2-1-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
|
||||||
|
|
|
@ -60,7 +60,7 @@ require_all 'jekyll/tags'
|
||||||
SafeYAML::OPTIONS[:suppress_warnings] = true
|
SafeYAML::OPTIONS[:suppress_warnings] = true
|
||||||
|
|
||||||
module Jekyll
|
module Jekyll
|
||||||
VERSION = '1.2.0'
|
VERSION = '1.2.1'
|
||||||
|
|
||||||
# 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,19 @@
|
||||||
|
---
|
||||||
|
layout: news_item
|
||||||
|
title: 'Jekyll 1.2.1 Released'
|
||||||
|
date: 2013-09-14 20:46:50 -0400
|
||||||
|
author: parkr
|
||||||
|
version: 1.2.1
|
||||||
|
categories: [release]
|
||||||
|
---
|
||||||
|
|
||||||
|
Quick turnover, anyone? A [recent incompatibility with Liquid
|
||||||
|
v2.5.2](https://github.com/mojombo/jekyll/pull/1525) produced a nasty bug in
|
||||||
|
which `include` tags were not rendered properly within `if` blocks.
|
||||||
|
|
||||||
|
This release also includes a better handling of detached servers (prints pid and
|
||||||
|
the command for killing the process). **Note**: the `--detach` flag and
|
||||||
|
`--watch` flags are presently incompatible in 1.2.x. Fix for that coming soon!
|
||||||
|
|
||||||
|
For a full list of the fixes in this release, check out [the change
|
||||||
|
log](/docs/history/)!
|
|
@ -5,6 +5,30 @@ permalink: /docs/history/
|
||||||
prev_section: contributing
|
prev_section: contributing
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## 1.2.1 / 2013-09-14
|
||||||
|
|
||||||
|
### Minor Enhancements
|
||||||
|
- Print better messages for detached server. Mute output on detach. ([#1518]({{ site.repository }}/issues/1518))
|
||||||
|
- Disable reverse lookup when running `jekyll serve` ([#1363]({{ site.repository }}/issues/1363))
|
||||||
|
- Upgrade RedCarpet dependency to `~> 2.3.0` ([#1515]({{ site.repository }}/issues/1515))
|
||||||
|
- Upgrade to Liquid `>= 2.5.2, < 2.6` ([#1536]({{ site.repository }}/issues/1536))
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
- Fix file discrepancy in gemspec ([#1522]({{ site.repository }}/issues/1522))
|
||||||
|
- Force rendering of Include tag ([#1525]({{ site.repository }}/issues/1525))
|
||||||
|
|
||||||
|
### Development Fixes
|
||||||
|
- Add a rake task to generate a new release post ([#1404]({{ site.repository }}/issues/1404))
|
||||||
|
- Mute LSI output in tests ([#1531]({{ site.repository }}/issues/1531))
|
||||||
|
- Update contributor documentation ([#1537]({{ site.repository }}/issues/1537))
|
||||||
|
|
||||||
|
### Site Enhancements
|
||||||
|
- Fix a couple of validation errors on the site ([#1511]({{ site.repository }}/issues/1511))
|
||||||
|
- Make navigation menus reusable ([#1507]({{ site.repository }}/issues/1507))
|
||||||
|
- Fix link to History page from Release v1.2.0 notes post.
|
||||||
|
- Fix markup in History file for command line options ([#1512]({{ site.repository }}/issues/1512))
|
||||||
|
- Expand 1.2 release post title to 1.2.0 ([#1516]({{ site.repository }}/issues/1516))
|
||||||
|
|
||||||
## 1.2.0 / 2013-09-06
|
## 1.2.0 / 2013-09-06
|
||||||
|
|
||||||
### Major Enhancements
|
### Major Enhancements
|
||||||
|
|
Loading…
Reference in New Issue