aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--changelog.md26
-rw-r--r--spec/models/blog_categories_spec.rb2
2 files changed, 14 insertions, 14 deletions
diff --git a/changelog.md b/changelog.md
index 9b0fa33..5ab349a 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,18 +1,18 @@
## 1.2 [01 March 2011]
-* Posts can be authored [joemsak]
-* Front-end pagination [joemsak]
-* Archives start grouping by year after 2 years [joemsak]
-* Removed ajax blog post navigation [joemsak]
-* Administrate uncategorized posts [joemsak]
-* Categories in has_many :through relationship [joemsak]
-* General bug fixing & test coverage [pardnt] [joemsak]
-* Russian translation [iband]
-* French translation [AdrienGiboire]
-* Polish translation [murbanski]
-* German translation [gern]
-* Spanish translation help [xavib]
-* Rails 3 cleanup & optimization [ugisozols]
+* Posts can be authored [joemsak](https://github.com/joemsak)
+* Front-end pagination [joemsak](https://github.com/joemsak)
+* Archives start grouping by year after 2 years [joemsak](https://github.com/joemsak)
+* Removed ajax blog post navigation [joemsak](https://github.com/joemsak)
+* Administrate uncategorized posts [joemsak](https://github.com/joemsak)
+* Categories in has_many :through relationship [joemsak](https://github.com/joemsak)
+* General bug fixing & test coverage [parndt](https://github.com/parndt) [joemsak](https://github.com/joemsak)
+* Russian translation [iband](https://github.com/iband)
+* French translation [AdrienGiboire](https://github.com/AdrienGiboire)
+* Polish translation [murbanski](https://github.com/murbanski)
+* German translation [gern](https://github.com/gern)
+* Spanish translation help [xavib](https://github.com/xavib)
+* Rails 3 cleanup & optimization [ugisozols](https://github.com/ugisozols)
* [See full list](https://github.com/resolve/refinerycms-blog/compare/1.1...1.2)
diff --git a/spec/models/blog_categories_spec.rb b/spec/models/blog_categories_spec.rb
index f804dd6..53bc345 100644
--- a/spec/models/blog_categories_spec.rb
+++ b/spec/models/blog_categories_spec.rb
@@ -25,7 +25,7 @@ describe BlogCategory do
it "returns posts by published_at date in descending order" do
@category = BlogCategory.create!(@attr)
@first_post = @category.posts.create!({ :title => "Breaking News: Joe Sak is hot stuff you guys!!", :body => "True story.", :published_at => Time.now.yesterday })
- @latest_post = @category.posts.create!({ :title => "pardnt is p. okay", :body => "For a kiwi.", :published_at => Time.now })
+ @latest_post = @category.posts.create!({ :title => "parndt is p. okay", :body => "For a kiwi.", :published_at => Time.now })
@category.posts.first.should == @latest_post
end