Bump master to 2.1.0.dev.
This commit is contained in:
parent
5577b8e701
commit
538e6653f0
4 changed files with 13 additions and 10 deletions
|
@ -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'
|
||||
|
|
|
@ -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
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue