diff options
-rw-r--r-- | coderay.gemspec | 5 | ||||
-rw-r--r-- | lib/coderay/version.rb | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/coderay.gemspec b/coderay.gemspec index 0eabd66..ad7a2bb 100644 --- a/coderay.gemspec +++ b/coderay.gemspec @@ -9,8 +9,9 @@ Gem::Specification.new do |s| s.version = CodeRay::VERSION else # thanks to @Argorak for this solution - revision = 134 + (`git log --oneline | wc -l`.to_i) - s.version = "#{CodeRay::VERSION}.#{revision}rc3" + # revision = 134 + (`git log --oneline | wc -l`.to_i) + # s.version = "#{CodeRay::VERSION}.#{revision}rc1" + s.version = "#{CodeRay::VERSION}.rc1" end s.authors = ['Kornelius Kalnbach'] diff --git a/lib/coderay/version.rb b/lib/coderay/version.rb index 9ffb7a9..e2797b5 100644 --- a/lib/coderay/version.rb +++ b/lib/coderay/version.rb @@ -1,3 +1,3 @@ module CodeRay - VERSION = '1.0.4' + VERSION = '1.0.5' end |