jekyll 0.6.0 → 0.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,7 @@
1
+ == 0.6.1
2
+ * Bug Fixes
3
+ * Fix Markdown Pygments prefix and suffix (#178)
4
+
1
5
  == 0.6.0
2
6
  * Major Enhancements
3
7
  * Proper plugin system (#19, #100)
@@ -4,8 +4,8 @@ Gem::Specification.new do |s|
4
4
  s.rubygems_version = '1.3.5'
5
5
 
6
6
  s.name = 'jekyll'
7
- s.version = '0.6.0'
8
- s.date = '2010-06-22'
7
+ s.version = '0.6.1'
8
+ s.date = '2010-06-23'
9
9
  s.rubyforge_project = 'jekyll'
10
10
 
11
11
  s.summary = "A simple, blog aware, static site generator."
@@ -45,7 +45,7 @@ require_all 'jekyll/generators'
45
45
  require_all 'jekyll/tags'
46
46
 
47
47
  module Jekyll
48
- VERSION = '0.6.0'
48
+ VERSION = '0.6.1'
49
49
 
50
50
  # Default options. Overriden by values in _config.yml or command-line opts.
51
51
  # (Strings rather symbols used for compatability with YAML).
@@ -3,8 +3,8 @@ module Jekyll
3
3
  class MarkdownConverter < Converter
4
4
  safe true
5
5
 
6
- pygments_prefix '\n'
7
- pygments_suffix '\n'
6
+ pygments_prefix "\n"
7
+ pygments_suffix "\n"
8
8
 
9
9
  def setup
10
10
  return if @setup
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll
3
3
  version: !ruby/object:Gem::Version
4
- hash: 7
4
+ hash: 5
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 6
9
- - 0
10
- version: 0.6.0
9
+ - 1
10
+ version: 0.6.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Tom Preston-Werner
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-06-22 00:00:00 -07:00
18
+ date: 2010-06-23 00:00:00 -07:00
19
19
  default_executable: jekyll
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency