Skip to content

Commit

Permalink
Bump version to 0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sferik committed Jun 22, 2015
1 parent 9faa220 commit 6bec996
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/twurl/version.rb
Expand Up @@ -2,13 +2,13 @@ module Twurl
class Version
MAJOR = 0 unless defined? Twurl::Version::MAJOR
MINOR = 9 unless defined? Twurl::Version::MINOR
PATCH = 2 unless defined? Twurl::Version::PATCH
BETA = nil unless defined? Twurl::Version::BETA # Time.now.to_i.to_s
PATCH = 3 unless defined? Twurl::Version::PATCH
PRE = nil unless defined? Twurl::Version::PRE # Time.now.to_i.to_s

class << self
# @return [String]
def to_s
[MAJOR, MINOR, PATCH, BETA].compact.join('.')
[MAJOR, MINOR, PATCH, PRE].compact.join('.')
end
end
end
Expand Down

0 comments on commit 6bec996

Please sign in to comment.