jekyll 1.3.0.rc → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of jekyll might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 09778948dac8d2cea23077a1a90c04b466f79cc8
4
- data.tar.gz: d7bb52dd2cd2b29ed5a20c96f9e548bff7cf604c
3
+ metadata.gz: fa3966f04190edd8878f4cc0301a06d856e89e48
4
+ data.tar.gz: ba1d29bb0118036650a3995667f9a20e097ba28e
5
5
  SHA512:
6
- metadata.gz: db047d0e039e9b248260fe3612dfc1d4d6e6b0890947813c95eecb0c4bc3610dd81aefa027104f7e25a2b938ff812166492230f003b845e2e7f270258f2ee9a1
7
- data.tar.gz: a0563de63fbec8c2bf78b88e914e6ca3b49206dedcb386481720181907343adfd7c77dc54f39e002d5963e951d17677449974c215988b66d8bd88b851c8bbc7b
6
+ metadata.gz: 9789c1c9bf08e7d2ebe99c6fe31924819565f4275f909d7d070350f5e11a157c27837baff4c5ab1e1452481184469ea311ced869b32934f2e58fa7bde0dc80e1
7
+ data.tar.gz: 92baf68cd9a63f7d780672ee6916220a160674bc1017920ff5043f1ddf2be489e9b5b001dc5a501e84cf3d3de7cfa60e160d2119df416807b1fcbfcfc6a985bc
@@ -1,5 +1,17 @@
1
1
  ## HEAD
2
2
 
3
+ ### Major Enhancements
4
+
5
+ ### Minor Enhancements
6
+
7
+ ### Bug Fixes
8
+
9
+ ### Development Fixes
10
+
11
+ ### Site Enhancements
12
+
13
+ ## v1.3.0 / 2013-11-04
14
+
3
15
  ### Major Enhancements
4
16
  * Add support for adding data as YAML files under a site's `_data`
5
17
  directory (#1003)
@@ -35,6 +47,8 @@
35
47
  * Capitalize the short verbose switch because it conflicts with the
36
48
  built-in Commander switch (#1660)
37
49
  * Fix compatibility with 1.8.x (#1665)
50
+ * Fix an error with the new file watching code due to library version
51
+ incompatibilities (#1687)
38
52
 
39
53
  ### Development Fixes
40
54
  * Add coverage reporting with Coveralls (#1539)
@@ -67,6 +81,8 @@
67
81
  * Add documentation for the use of gems as plugins (#1656)
68
82
  * Document the existence of a few additional plugins (#1405)
69
83
  * Document that the `date_to_string` always returns a two digit day (#1663)
84
+ * Fix navigation in the "Working with Drafts" page (#1667)
85
+ * Fix an error with the data documentation (#1691)
70
86
 
71
87
  ## 1.2.1 / 2013-09-14
72
88
 
@@ -4,9 +4,9 @@ Gem::Specification.new do |s|
4
4
  s.rubygems_version = '1.3.5'
5
5
 
6
6
  s.name = 'jekyll'
7
- s.version = '1.3.0.rc'
7
+ s.version = '1.3.0'
8
8
  s.license = 'MIT'
9
- s.date = '2013-10-29'
9
+ s.date = '2013-11-04'
10
10
  s.rubyforge_project = 'jekyll'
11
11
 
12
12
  s.summary = "A simple, blog aware, static site generator."
@@ -155,6 +155,7 @@ Gem::Specification.new do |s|
155
155
  site/_posts/2013-09-06-jekyll-1-2-0-released.markdown
156
156
  site/_posts/2013-09-14-jekyll-1-2-1-released.markdown
157
157
  site/_posts/2013-10-28-jekyll-1-3-0-rc1-released.markdown
158
+ site/_posts/2013-11-04-jekyll-1-3-0-released.markdown
158
159
  site/css/gridism.css
159
160
  site/css/normalize.css
160
161
  site/css/pygments.css
@@ -61,7 +61,7 @@ require_all 'jekyll/tags'
61
61
  SafeYAML::OPTIONS[:suppress_warnings] = true
62
62
 
63
63
  module Jekyll
64
- VERSION = '1.3.0.rc'
64
+ VERSION = '1.3.0'
65
65
 
66
66
  # Public: Generate a Jekyll configuration Hash by merging the default
67
67
  # options with anything in _config.yml, and adding the given options on top.
@@ -46,7 +46,7 @@ module Jekyll
46
46
 
47
47
  Jekyll.logger.info "Auto-regeneration:", "enabled"
48
48
 
49
- listener = Listen.to(source, :ignore => ignored) do |modified, added, removed|
49
+ listener = Listen::Listener.new(source, :ignore => ignored) do |modified, added, removed|
50
50
  t = Time.now.strftime("%Y-%m-%d %H:%M:%S")
51
51
  n = modified.length + added.length + removed.length
52
52
  print Jekyll.logger.formatted_topic("Regenerating:") + "#{n} files at #{t} "
@@ -0,0 +1,43 @@
1
+ ---
2
+ layout: news_item
3
+ title: 'Jekyll 1.3.0 Released'
4
+ date: 2013-11-04 21:46:02 -0600
5
+ author: mattr-
6
+ version: 1.3.0
7
+ categories: [release]
8
+ ---
9
+
10
+ It's been about six weeks since v1.2.0 and the Jekyll team is happy to
11
+ announce the arrival of v1.3.0. This is a **huge** release full of all
12
+ sorts of new features, bug fixes, and other things that you're sure to
13
+ love.
14
+
15
+ Here are a few things we think you'll want to know about this release:
16
+
17
+ * You can add [arbitrary data][] to the site by adding YAML files under a
18
+ site's `_data` directory. This will allow you to avoid
19
+ repetition in your templates and to set site specific options without
20
+ changing `_config.yml`.
21
+
22
+ * You can now Run `jekyll serve --detach` to boot up a WEBrick server in the
23
+ background. **Note:** you'll need to run `kill [server_pid]` to shut
24
+ the server down. When ran, you'll get a process id that you can use in
25
+ place of `[server_pid]`
26
+
27
+ * You can now **disable automatically-generated excerpts** if you set
28
+ `excerpt_separator` to `""`.
29
+
30
+ * If you're moving pages and posts, you can now check for **URL
31
+ conflicts** by running `jekyll doctor`.
32
+
33
+ * If you're a fan of the drafts feature, you'll be happy to know we've
34
+ added `-D`, a shortened version of `--drafts`.
35
+
36
+ * Permalinks with special characters should now generate without errors.
37
+
38
+ * Expose the current Jekyll version as the `jekyll.version` Liquid
39
+ variable.
40
+
41
+ For a full run-down, visit our [change log](/docs/history/)!
42
+
43
+ [arbitrary data]: /docs/datafiles/
@@ -57,7 +57,7 @@ You can now render the list of members in a template:
57
57
  {{ member.name }}
58
58
  </a>
59
59
  </li>
60
- {% end %}
60
+ {% endfor %}
61
61
  </ul>
62
62
  {% endraw %}
63
63
  {% endhighlight %}
@@ -1,6 +1,8 @@
1
1
  ---
2
2
  layout: docs
3
3
  title: Working with drafts
4
+ prev_section: posts
5
+ next_section: pages
4
6
  permalink: /docs/drafts/
5
7
  ---
6
8
 
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  layout: docs
3
3
  title: Creating pages
4
- prev_section: posts
4
+ prev_section: drafts
5
5
  next_section: variables
6
6
  permalink: /docs/pages/
7
7
  ---
@@ -2,7 +2,7 @@
2
2
  layout: docs
3
3
  title: Writing posts
4
4
  prev_section: frontmatter
5
- next_section: pages
5
+ next_section: drafts
6
6
  permalink: /docs/posts/
7
7
  ---
8
8
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0.rc
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Preston-Werner
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-10-29 00:00:00.000000000 Z
11
+ date: 2013-11-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: liquid
@@ -472,6 +472,7 @@ files:
472
472
  - site/_posts/2013-09-06-jekyll-1-2-0-released.markdown
473
473
  - site/_posts/2013-09-14-jekyll-1-2-1-released.markdown
474
474
  - site/_posts/2013-10-28-jekyll-1-3-0-rc1-released.markdown
475
+ - site/_posts/2013-11-04-jekyll-1-3-0-released.markdown
475
476
  - site/css/gridism.css
476
477
  - site/css/normalize.css
477
478
  - site/css/pygments.css
@@ -618,9 +619,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
618
619
  version: '0'
619
620
  required_rubygems_version: !ruby/object:Gem::Requirement
620
621
  requirements:
621
- - - '>'
622
+ - - '>='
622
623
  - !ruby/object:Gem::Version
623
- version: 1.3.1
624
+ version: '0'
624
625
  requirements: []
625
626
  rubyforge_project: jekyll
626
627
  rubygems_version: 2.0.3