From cc0c82f9d26ae00cac2d8326680761e366d4bde0 Mon Sep 17 00:00:00 2001 From: Matt Rogers Date: Sun, 3 Nov 2013 21:46:02 -0600 Subject: [PATCH 1/5] Prep for the 1.3.0 release --- History.markdown | 12 ++++++ jekyll.gemspec | 5 ++- .../2013-11-04-jekyll-1-3-0-released.markdown | 41 +++++++++++++++++++ 3 files changed, 56 insertions(+), 2 deletions(-) create mode 100644 site/_posts/2013-11-04-jekyll-1-3-0-released.markdown diff --git a/History.markdown b/History.markdown index e91008a5..1f5343ab 100644 --- a/History.markdown +++ b/History.markdown @@ -1,5 +1,17 @@ ## HEAD +### Major Enhancements + +### Minor Enhancements + +### Bug Fixes + +### Development Fixes + +### Site Enhancements + +## v1.3.0 / 2013-10-24 + ### Major Enhancements * Add support for adding data as YAML files under a site's `_data` directory (#1003) diff --git a/jekyll.gemspec b/jekyll.gemspec index 7034b251..62a866a6 100644 --- a/jekyll.gemspec +++ b/jekyll.gemspec @@ -4,9 +4,9 @@ Gem::Specification.new do |s| s.rubygems_version = '1.3.5' s.name = 'jekyll' - s.version = '1.3.0.rc' + s.version = '1.3.0' s.license = 'MIT' - s.date = '2013-10-29' + s.date = '2013-11-04' s.rubyforge_project = 'jekyll' s.summary = "A simple, blog aware, static site generator." @@ -155,6 +155,7 @@ Gem::Specification.new do |s| site/_posts/2013-09-06-jekyll-1-2-0-released.markdown site/_posts/2013-09-14-jekyll-1-2-1-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/css/gridism.css site/css/normalize.css site/css/pygments.css diff --git a/site/_posts/2013-11-04-jekyll-1-3-0-released.markdown b/site/_posts/2013-11-04-jekyll-1-3-0-released.markdown new file mode 100644 index 00000000..a1954979 --- /dev/null +++ b/site/_posts/2013-11-04-jekyll-1-3-0-released.markdown @@ -0,0 +1,41 @@ +--- +layout: news_item +title: 'Jekyll 1.3.0 Released' +date: 2013-10-23 23:15:22 -0500 +author: +version: 1.2.1 +categories: [release] +--- + +It's been about six weeks since v1.2.0 and the Jekyll team is happy to +announce the arrival of v1.3.0. This is a **huge** release full of all +sorts of new features, bug fixes, and other things that you're sure to +love. + +Here are a few things we think you'll want to know about this release: + +* You can add arbitrary data to the site by adding YAML files under a + site's `_data` directory. This will allow you to avoid + repetition in your templates and to set site specific options without + changing `_config.yml`. + +* You can now Run `jekyll serve --detach` to boot up a WEBrick server in the + background. **Note:** you'll need to run `kill [server_pid]` to shut + the server down. When ran, you'll get a process id that you can use in + place of `[server_pid]` + +* You can now **disable automatically-generated excerpts** if you set + `excerpt_separator` to `""`. + +* If you're moving pages and posts, you can now check for **URL + conflicts** by running `jekyll doctor`. + +* If you're a fan of the drafts feature, you'll be happy to know we've + added `-D`, a shortened version of `--drafts`. + +* Permalinks with special characters should now generate without errors. + +* Expose the current Jekyll version as the `jekyll.version` Liquid + variable. + +For a full run-down, visit our [change log](/docs/history/)! From 65653fed849db5075dadaab9a5fabafd01cb5e71 Mon Sep 17 00:00:00 2001 From: Matt Rogers Date: Sun, 3 Nov 2013 21:48:34 -0600 Subject: [PATCH 2/5] Bump version to 1.3.0 --- lib/jekyll.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/jekyll.rb b/lib/jekyll.rb index 096c718f..d99a3972 100644 --- a/lib/jekyll.rb +++ b/lib/jekyll.rb @@ -61,7 +61,7 @@ require_all 'jekyll/tags' SafeYAML::OPTIONS[:suppress_warnings] = true module Jekyll - VERSION = '1.3.0.rc' + VERSION = '1.3.0' # Public: Generate a Jekyll configuration Hash by merging the default # options with anything in _config.yml, and adding the given options on top. From a49a0ec2ac12d883b5d1a7e95eed78275eb9a2af Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Mon, 4 Nov 2013 14:39:56 -0500 Subject: [PATCH 3/5] Minor fixes to v1.3.0 release post. --- site/_posts/2013-11-04-jekyll-1-3-0-released.markdown | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/site/_posts/2013-11-04-jekyll-1-3-0-released.markdown b/site/_posts/2013-11-04-jekyll-1-3-0-released.markdown index a1954979..e14ea119 100644 --- a/site/_posts/2013-11-04-jekyll-1-3-0-released.markdown +++ b/site/_posts/2013-11-04-jekyll-1-3-0-released.markdown @@ -1,9 +1,9 @@ --- layout: news_item title: 'Jekyll 1.3.0 Released' -date: 2013-10-23 23:15:22 -0500 -author: -version: 1.2.1 +date: 2013-11-04 21:46:02 -0600 +author: mattr- +version: 1.3.0 categories: [release] --- @@ -14,7 +14,7 @@ love. Here are a few things we think you'll want to know about this release: -* You can add arbitrary data to the site by adding YAML files under a +* You can add [arbitrary data][] to the site by adding YAML files under a site's `_data` directory. This will allow you to avoid repetition in your templates and to set site specific options without changing `_config.yml`. @@ -39,3 +39,5 @@ Here are a few things we think you'll want to know about this release: variable. For a full run-down, visit our [change log](/docs/history/)! + +[arbitrary docs]: /docs/datafiles/ From b9817ab47b3aea2735bcaf9480fbab51fa3a09e2 Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Mon, 4 Nov 2013 14:40:53 -0500 Subject: [PATCH 4/5] Fix release date of v1.3.0 in History file --- History.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/History.markdown b/History.markdown index 1f5343ab..160aff33 100644 --- a/History.markdown +++ b/History.markdown @@ -10,7 +10,7 @@ ### Site Enhancements -## v1.3.0 / 2013-10-24 +## v1.3.0 / 2013-11-04 ### Major Enhancements * Add support for adding data as YAML files under a site's `_data` From 2087fb87b2470836252f2e0697dfd5038ecaab6a Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Mon, 4 Nov 2013 14:43:27 -0500 Subject: [PATCH 5/5] Fix link to /docs/datafiles/ in 1.3.0 release post. --- site/_posts/2013-11-04-jekyll-1-3-0-released.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/_posts/2013-11-04-jekyll-1-3-0-released.markdown b/site/_posts/2013-11-04-jekyll-1-3-0-released.markdown index e14ea119..2cddd5e6 100644 --- a/site/_posts/2013-11-04-jekyll-1-3-0-released.markdown +++ b/site/_posts/2013-11-04-jekyll-1-3-0-released.markdown @@ -40,4 +40,4 @@ Here are a few things we think you'll want to know about this release: For a full run-down, visit our [change log](/docs/history/)! -[arbitrary docs]: /docs/datafiles/ +[arbitrary data]: /docs/datafiles/