Version bump: 1.7.0
This commit is contained in:
parent
81bf46cd7a
commit
d9387e32c3
5 changed files with 10 additions and 10 deletions
|
@ -1,9 +1,9 @@
|
||||||
## 1.6.3 [UNRELEASED]
|
## 1.7.0 [UNRELEASED]
|
||||||
* Bulgarian translations [mirosr](https://github.com/mirosr)
|
* Bulgarian translations [mirosr](https://github.com/mirosr)
|
||||||
* posts/tagged... params[:tag_name] is optional [joemsak](https://github.com/joemsak)
|
* 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 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)
|
* 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]
|
## 1.6.2 [29 June 2011]
|
||||||
* Custom teaser field to overwrite the automatic truncation of the body [wikyd](https://github.com/wikyd)
|
* Custom teaser field to overwrite the automatic truncation of the body [wikyd](https://github.com/wikyd)
|
||||||
|
@ -76,4 +76,4 @@
|
||||||
* Rails 3 Support
|
* Rails 3 Support
|
||||||
* Archives
|
* Archives
|
||||||
* Categories
|
* 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)
|
||||||
|
|
|
@ -30,7 +30,7 @@ class CreateBlogStructure < ActiveRecord::Migration
|
||||||
|
|
||||||
add_index :blog_categories, :id
|
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_category_id
|
||||||
t.integer :blog_post_id
|
t.integer :blog_post_id
|
||||||
end
|
end
|
||||||
|
|
|
@ -2,8 +2,8 @@ module Refinery
|
||||||
module Blog
|
module Blog
|
||||||
class Version
|
class Version
|
||||||
@major = 1
|
@major = 1
|
||||||
@minor = 6
|
@minor = 7
|
||||||
@tiny = 3
|
@tiny = 0
|
||||||
|
|
||||||
class << self
|
class << self
|
||||||
attr_reader :major, :minor, :tiny
|
attr_reader :major, :minor, :tiny
|
||||||
|
@ -14,4 +14,4 @@ module Refinery
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -18,7 +18,7 @@ Your Rails 3 application should not be called "blog"
|
||||||
|
|
||||||
Open up your ``Gemfile`` and add at the bottom this line:
|
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``
|
Now, run ``bundle install``
|
||||||
|
|
||||||
|
@ -28,4 +28,4 @@ Next, to install the blog plugin run:
|
||||||
|
|
||||||
Finally migrate your database and you're done.
|
Finally migrate your database and you're done.
|
||||||
|
|
||||||
rake db:migrate
|
rake db:migrate
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
Gem::Specification.new do |s|
|
Gem::Specification.new do |s|
|
||||||
s.name = %q{refinerycms-blog}
|
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.description = %q{A really straightforward open source Ruby on Rails blog engine designed for integration with RefineryCMS.}
|
||||||
s.date = %q{2011-06-29}
|
s.date = %q{2011-06-29}
|
||||||
s.summary = %q{Ruby on Rails blogging engine for RefineryCMS.}
|
s.summary = %q{Ruby on Rails blogging engine for RefineryCMS.}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue