Skip to content

Commit

Permalink
Development release.
Browse files Browse the repository at this point in the history
  • Loading branch information
weppos committed Jan 21, 2011
1 parent 46c16a0 commit 49283c3
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion lib/rack_dav/version.rb
@@ -1,3 +1,16 @@
module RackDAV
VERSION = "0.1.3"

# Holds information about library version.
module Version
MAJOR = 0
MINOR = 2
PATCH = 0
BUILD = "dev#{Time.now.to_i}"

STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join(".")
end

# The current library version.
VERSION = Version::STRING

end

0 comments on commit 49283c3

Please sign in to comment.