diff --git a/ChangeLog.markdown b/ChangeLog.markdown index 07b8672..72af482 100644 --- a/ChangeLog.markdown +++ b/ChangeLog.markdown @@ -1,3 +1,7 @@ +#1.0.0 + * Removed support for Ruby 1.8.7 + * Added a version command + # 0.9.8 * Introduce new commands * `homesick cd` diff --git a/README.markdown b/README.markdown index 1069de3..c17afff 100644 --- a/README.markdown +++ b/README.markdown @@ -68,6 +68,10 @@ Not sure what else homesick has up its sleeve? There's always the built in help: homesick help +If you ever want to see what version of homesick you have type: + + homesick version|-v|--version + ## .homesick_subdir `homesick symlink` basically makes symlink to only first depth in `castle/home`. If you want to link nested files/directories, please use .homesick_subdir. @@ -146,6 +150,13 @@ and castle `-- .emacs.d `-- elisp +## Supported Ruby Versions + +Homesick is tested on the following Ruby versions: + +* 1.9.3 +* 2.0.0 + ## Note on Patches/Pull Requests * Fork the project. diff --git a/lib/homesick/version.rb b/lib/homesick/version.rb index 8e372a2..a81902d 100644 --- a/lib/homesick/version.rb +++ b/lib/homesick/version.rb @@ -1,9 +1,9 @@ # -*- encoding : utf-8 -*- class Homesick module Version - MAJOR = 0 - MINOR = 9 - PATCH = 8 + MAJOR = 1 + MINOR = 0 + PATCH = 0 STRING = "#{MAJOR}.#{MINOR}.#{PATCH}" end