Preparing for 1.0.0 release.

This commit is contained in:
Jeremy Cook
2014-01-15 20:23:25 -05:00
parent faa5f0b9ed
commit e5a6e43333
3 changed files with 18 additions and 3 deletions

View File

@@ -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`

View File

@@ -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.

View File

@@ -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