Version bump: 1.7.0

This commit is contained in:
Joe Sak 2011-11-14 16:26:43 -06:00
parent 81bf46cd7a
commit d9387e32c3
5 changed files with 10 additions and 10 deletions

View file

@ -1,9 +1,9 @@
## 1.6.3 [UNRELEASED]
## 1.7.0 [UNRELEASED]
* Bulgarian translations [mirosr](https://github.com/mirosr)
* posts/tagged... params[:tag_name] is optional [joemsak](https://github.com/joemsak)
* Bug Fix on Categorization relationship: destroying a post produced error because no primary key existed on join table [joemsak](https://github.com/joemsak)
* Bug fix on archive listing, don't include draft posts [jgrevich](https://github.com/jgrevich)
* [See full list](https://github.com/resolve/refinerycms-blog/compare/1.6.2...1.6.3)
* [See full list](https://github.com/resolve/refinerycms-blog/compare/1.6.2...1.7.0)
## 1.6.2 [29 June 2011]
* Custom teaser field to overwrite the automatic truncation of the body [wikyd](https://github.com/wikyd)
@ -76,4 +76,4 @@
* Rails 3 Support
* Archives
* Categories
* [See full list](https://github.com/resolve/refinerycms-blog/compare/1.0...1.1)
* [See full list](https://github.com/resolve/refinerycms-blog/compare/1.0...1.1)

View file

@ -30,7 +30,7 @@ class CreateBlogStructure < ActiveRecord::Migration
add_index :blog_categories, :id
create_table :blog_categories_blog_posts, :id => true do |t|
create_table :blog_categories_blog_posts, :id => false do |t|
t.integer :blog_category_id
t.integer :blog_post_id
end

View file

@ -2,8 +2,8 @@ module Refinery
module Blog
class Version
@major = 1
@minor = 6
@tiny = 3
@minor = 7
@tiny = 0
class << self
attr_reader :major, :minor, :tiny
@ -14,4 +14,4 @@ module Refinery
end
end
end
end
end

View file

@ -18,7 +18,7 @@ Your Rails 3 application should not be called "blog"
Open up your ``Gemfile`` and add at the bottom this line:
gem 'refinerycms-blog', '~> 1.6.3'
gem 'refinerycms-blog', '~> 1.7.0'
Now, run ``bundle install``
@ -28,4 +28,4 @@ Next, to install the blog plugin run:
Finally migrate your database and you're done.
rake db:migrate
rake db:migrate

View file

@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = %q{refinerycms-blog}
s.version = %q{1.6.3}
s.version = %q{1.7.0}
s.description = %q{A really straightforward open source Ruby on Rails blog engine designed for integration with RefineryCMS.}
s.date = %q{2011-06-29}
s.summary = %q{Ruby on Rails blogging engine for RefineryCMS.}