From d9387e32c3f9d9ad84f35d928fe5c4061298c65f Mon Sep 17 00:00:00 2001 From: Joe Sak Date: Mon, 14 Nov 2011 16:26:43 -0600 Subject: [PATCH] Version bump: 1.7.0 --- changelog.md | 6 +++--- db/migrate/1_create_blog_structure.rb | 2 +- lib/refinery/blog/version.rb | 6 +++--- readme.md | 4 ++-- refinerycms-blog.gemspec | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/changelog.md b/changelog.md index 2c30068..e4ad59b 100644 --- a/changelog.md +++ b/changelog.md @@ -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) \ No newline at end of file +* [See full list](https://github.com/resolve/refinerycms-blog/compare/1.0...1.1) diff --git a/db/migrate/1_create_blog_structure.rb b/db/migrate/1_create_blog_structure.rb index a93d2d4..197efb1 100644 --- a/db/migrate/1_create_blog_structure.rb +++ b/db/migrate/1_create_blog_structure.rb @@ -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 diff --git a/lib/refinery/blog/version.rb b/lib/refinery/blog/version.rb index 3902da5..e571d18 100644 --- a/lib/refinery/blog/version.rb +++ b/lib/refinery/blog/version.rb @@ -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 \ No newline at end of file +end diff --git a/readme.md b/readme.md index ab4abf9..704349c 100644 --- a/readme.md +++ b/readme.md @@ -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 \ No newline at end of file + rake db:migrate diff --git a/refinerycms-blog.gemspec b/refinerycms-blog.gemspec index 49dcf14..59c0cc1 100644 --- a/refinerycms-blog.gemspec +++ b/refinerycms-blog.gemspec @@ -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.}