Skip to content

Commit

Permalink
Update to 3.5.0 or later
Browse files Browse the repository at this point in the history
* Fix broken integration tests
* Update to depend on 3.5.0 (not an RC version)
  • Loading branch information
peakpg committed Jun 1, 2012
1 parent 4baff75 commit 6ed09aa
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 5 deletions.
1 change: 1 addition & 0 deletions Gemfile
@@ -1,5 +1,6 @@
source 'http://rubygems.org'

gem 'rails', '3.2.3'
gem 'sqlite3'

group :test do
Expand Down
7 changes: 4 additions & 3 deletions Gemfile.lock
@@ -1,8 +1,8 @@
PATH
remote: .
specs:
bcms_blog (1.3.0)
browsercms (>= 3.5.0.rc4, < 3.6.0)
bcms_blog (1.3.1)
browsercms (>= 3.5.0, < 3.6.0)

GEM
remote: http://rubygems.org/
Expand Down Expand Up @@ -37,7 +37,7 @@ GEM
ancestry (1.2.5)
activerecord (>= 2.2.2)
arel (3.0.2)
browsercms (3.5.0.rc4)
browsercms (3.5.0)
ancestry (~> 1.2.4)
ckeditor_rails (~> 3.6.2.2)
jquery-rails (~> 2.0)
Expand Down Expand Up @@ -129,4 +129,5 @@ DEPENDENCIES
bcms_blog!
factory_girl_rails
mocha
rails (= 3.2.3)
sqlite3
2 changes: 1 addition & 1 deletion bcms_blog.gemspec
Expand Up @@ -22,7 +22,7 @@ Gem::Specification.new do |s|
s.test_files += Dir["test/**/*"]
s.test_files -= Dir['test/dummy/**/*']

s.add_dependency("browsercms", "< 3.6.0", ">= 3.5.0.rc4")
s.add_dependency("browsercms", "< 3.6.0", ">= 3.5.0")


end
Expand Down
6 changes: 6 additions & 0 deletions doc/release_notes.txt
@@ -1,3 +1,9 @@
v1.3.1
======

* Fix bug with PostsPortlet where it was throwing an error when rendering
* Fix broken integration tests

v1.3.0
======

Expand Down
2 changes: 1 addition & 1 deletion lib/bcms_blog/version.rb
@@ -1,3 +1,3 @@
module BcmsBlog
VERSION = "1.3.0"
VERSION = "1.3.1"
end
3 changes: 3 additions & 0 deletions test/dummy/app/views/layouts/templates/default.html.erb
Expand Up @@ -4,7 +4,10 @@
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title><%= page_title %></title>
<%= yield :html_head %>
<% # Need this so integration tests don't break
if BcmsBlog::Blog.find_by_name("Patricks Blog") %>
<%= feeds_link_tag_for "Patricks Blog" %>
<% end %>

</head>
<body style="margin: 0; padding: 0; text-align: center;">
Expand Down

0 comments on commit 6ed09aa

Please sign in to comment.