diff --git a/README.md b/README.md index 0265dfa..3fc7329 100755 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Betty (version 0.1.6) +Betty (version 0.1.7) ===================== ![circle ci build](https://circleci.com/gh/pickhardt/betty/tree/dev.png) diff --git a/changelog.txt b/changelog.txt index 28a418b..1b38e0b 100755 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,13 @@ +0.1.7 (September 21, 2014) +-------------------------- + +Added rock, paper, scissors. + +Added some tests. + +Fixed a bug with the copy and move commands. + + 0.1.6 (May 26, 2014) -------------------- diff --git a/main.rb b/main.rb index e49448d..bc45561 100755 --- a/main.rb +++ b/main.rb @@ -2,7 +2,7 @@ require 'logger' $URL = 'https://github.com/pickhardt/betty' -$VERSION = '0.1.6' +$VERSION = '0.1.7' $executors = [] $LOG = Logger.new(File.open(ENV['HOME'] + '/.betty_history', 'a+'))