octopress-feeds 2.0.1 → 2.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c15bfbb0d220cffe45127816eeab17c88796d34f
4
- data.tar.gz: 80233babe1b7a350b97ac05b419f36b63c464317
3
+ metadata.gz: e97443705b4e220d195b853c0a7c526536c3e0e0
4
+ data.tar.gz: 995bd7c729bdf8eee9fd0948958c0e1682fdb152
5
5
  SHA512:
6
- metadata.gz: fbd8c8a096272c3f832c37fa10deb497c2f90e346f3538c032b1b4d12aab1e26c7278ff3c2c508344ec22de83f4a623c43cd4607d9bd8c401c3fbadba531d488
7
- data.tar.gz: d459e98b991c1b26ef3c2f9386794337477bd72372449455ae3a560715610e7276fa9c12e8e0944f723e2c175b0aa98e501f51ed049c45a5b429553231dbb048
6
+ metadata.gz: 9be1a6954c02350fea21cf8b0d8016a022e6f0f74c81d25a3a10a4df8c5807da746a5b45ac873daf9e0d8800336c395f8e54df6efb88f430354fa96ef7447109
7
+ data.tar.gz: a5e5546138a0b52dbdcfc2db43905abb268f3a99ec52117e49c7a8cc1563b0867e351d5bda397455818261191a86a887939a887683534114be19db8fb590f85f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ### 2.0.2 (2015-03-04)
4
+ - Fix: Liquid doesn't understand `||`, it prefers `or`.
5
+
3
6
  ### 2.0.1 (2015-03-04)
4
7
  - Fix: Feeds blew up if site author was not configured
5
8
 
@@ -8,7 +8,7 @@
8
8
  <id>{{ post.id }}</id>
9
9
  <published>{{ post.date_xml }}</published>
10
10
  <updated>{% return post.date_updated_xml || post.date_xml %}</updated>
11
- {% if post.author || site.author %}<author>
11
+ {% if post.author or site.author %}<author>
12
12
  <name>{% return post.author || site.author %}</name>
13
13
  <uri>{% if post.author_site %}{{ post.author_site }}{% else %}{{ site.url | join_url: site.baseurl }}{% endif %}</uri>
14
14
  </author>{% endif %}
@@ -1,5 +1,5 @@
1
1
  module Octopress
2
2
  module Feeds
3
- VERSION = "2.0.1"
3
+ VERSION = "2.0.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: octopress-feeds
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brandon Mathis