From 538e6653f053a2eaf8da504617f881cea472f6d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?U=C4=A3is=20Ozols?= Date: Tue, 15 May 2012 08:22:20 +0300 Subject: Bump master to 2.1.0.dev. --- lib/refinery/blog.rb | 1 + lib/refinery/blog/version.rb | 11 ++++++----- 2 files changed, 7 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/refinery/blog.rb b/lib/refinery/blog.rb index 72ca4a6..52f73e0 100644 --- a/lib/refinery/blog.rb +++ b/lib/refinery/blog.rb @@ -2,6 +2,7 @@ require 'refinerycms-core' require 'refinerycms-settings' require 'filters_spam' require 'rails_autolink' +require 'acts_as_indexed' module Refinery autoload :BlogGenerator, 'generators/refinery/blog/blog_generator' diff --git a/lib/refinery/blog/version.rb b/lib/refinery/blog/version.rb index 45511ad..25ffc26 100644 --- a/lib/refinery/blog/version.rb +++ b/lib/refinery/blog/version.rb @@ -2,16 +2,17 @@ module Refinery module Blog class Version @major = 2 - @minor = 0 - @tiny = 2 + @minor = 1 + @tiny = 0 + @build = 'dev' class << self - attr_reader :major, :minor, :tiny + attr_reader :major, :minor, :tiny, :build def to_s - [@major, @minor, @tiny].compact.join('.') + [@major, @minor, @tiny, @build].compact.join('.') end end end end -end \ No newline at end of file +end -- cgit v1.2.3