jekyll 2.0.0 → 2.0.1

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: f15afc62570e5e20a6a27553ca201e08ec8c9d69
4
- data.tar.gz: 1a967f8aca5003083a4b9da5ba6a92d25dbf1ea7
3
+ metadata.gz: 1e695fdd3b864f67e5922d55041c4a55027f1cd8
4
+ data.tar.gz: 3ef02a2bd0c86ba96715616ef22d12842e2f8683
5
5
  SHA512:
6
- metadata.gz: f1479bd3d893c58838172496863d3fdb58d48d9195270aa00445ad5d7895bd7622e9bf9ae4f42a35492be996c8f24de9f8bfe9f64148c10c055636992c210c8a
7
- data.tar.gz: e3c5582546fcb711a2c9b5ee9c3c0a8611385fb96f4fad06199e52312bab2e124105782503243a4a744cd4dffca31ccc06a413336f892e95fbc345aafbd64979
6
+ metadata.gz: 17007860ae3438013a112ef79af3ab25eaeaa8eb345e913b8c9ecc75829408989489bfbfef6e82fd675a436ac6e09e8697f93c3af0369e23e8ac57959249d1a9
7
+ data.tar.gz: 4405b6e57b1ad602b2ae4e3750bb2011b4b209cddc7daa961f2498ad5ddc9767a51a0b826ee7ae2482d0afcd9daff0eb56aebe4e2911ca869062ef2f834a81a8
@@ -10,6 +10,12 @@
10
10
 
11
11
  ### Site Enhancements
12
12
 
13
+ ## 2.0.1 / 2014-05-06
14
+
15
+ ### Bug Fixes
16
+
17
+ * Require `kramdown` gem instead of `maruku` gem
18
+
13
19
  ## 2.0.0 / 2014-05-06
14
20
 
15
21
  ### Major Enhancements
@@ -24,7 +24,7 @@ require 'pathname'
24
24
 
25
25
  # 3rd party
26
26
  require 'liquid'
27
- require 'maruku'
27
+ require 'kramdown'
28
28
  require 'colorator'
29
29
  require 'toml'
30
30
 
@@ -1,3 +1,3 @@
1
1
  module Jekyll
2
- VERSION = '2.0.0'
2
+ VERSION = '2.0.1'
3
3
  end
@@ -5,3 +5,4 @@ permalink: /news/:year/:month/:day/:title/
5
5
  excerpt_separator: noifniof3nioaniof3nioafafinoafnoif
6
6
  repository: https://github.com/jekyll/jekyll
7
7
  help_url: https://github.com/jekyll/jekyll-help
8
+ google_analytics_id: UA-50755011-1
@@ -18,15 +18,13 @@
18
18
  {% if site.google_analytics_id %}
19
19
  <!-- Google Analytics (http://google.com/analytics) -->
20
20
  <script>
21
- var _gaq = _gaq || [];
22
- _gaq.push(['_setAccount', '{{ site.google_analytics_id }}']);
23
- _gaq.push(['_setDomainName', '{{ site.url }}']); // Multiple sub-domains
24
- _gaq.push(['_setAllowLinker', true]); // Multiple TLDs
25
- _gaq.push(['_trackPageview']);
26
- (function() {
27
- var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
28
- ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
29
- var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
30
- })();
21
+ (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
22
+ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
23
+ m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
24
+ })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
25
+
26
+ ga('create', '{{ site.google_analytics_id }}', 'jekyllrb.com');
27
+ ga('send', 'pageview');
28
+
31
29
  </script>
32
30
  {% endif %}
@@ -5,6 +5,10 @@ permalink: "/docs/history/"
5
5
  prev_section: contributing
6
6
  ---
7
7
 
8
+ ## 2.0.1 / 2014-05-06
9
+
10
+ ### Bug Fixes- Require `kramdown` gem instead of `maruku` gem
11
+
8
12
  ## 2.0.0 / 2014-05-06
9
13
 
10
14
  ### Major Enhancements
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Preston-Werner