Preparing for 1.0.0 release.
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
#1.0.0
|
||||||
|
* Removed support for Ruby 1.8.7
|
||||||
|
* Added a version command
|
||||||
|
|
||||||
# 0.9.8
|
# 0.9.8
|
||||||
* Introduce new commands
|
* Introduce new commands
|
||||||
* `homesick cd`
|
* `homesick cd`
|
||||||
|
|||||||
@@ -68,6 +68,10 @@ Not sure what else homesick has up its sleeve? There's always the built in help:
|
|||||||
|
|
||||||
homesick help
|
homesick help
|
||||||
|
|
||||||
|
If you ever want to see what version of homesick you have type:
|
||||||
|
|
||||||
|
homesick version|-v|--version
|
||||||
|
|
||||||
## .homesick_subdir
|
## .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.
|
`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
|
`-- .emacs.d
|
||||||
`-- elisp
|
`-- elisp
|
||||||
|
|
||||||
|
## Supported Ruby Versions
|
||||||
|
|
||||||
|
Homesick is tested on the following Ruby versions:
|
||||||
|
|
||||||
|
* 1.9.3
|
||||||
|
* 2.0.0
|
||||||
|
|
||||||
## Note on Patches/Pull Requests
|
## Note on Patches/Pull Requests
|
||||||
|
|
||||||
* Fork the project.
|
* Fork the project.
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
# -*- encoding : utf-8 -*-
|
# -*- encoding : utf-8 -*-
|
||||||
class Homesick
|
class Homesick
|
||||||
module Version
|
module Version
|
||||||
MAJOR = 0
|
MAJOR = 1
|
||||||
MINOR = 9
|
MINOR = 0
|
||||||
PATCH = 8
|
PATCH = 0
|
||||||
|
|
||||||
STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"
|
STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user