diff --git a/.gitignore b/.gitignore index 6fccad9..8291ff5 100644 --- a/.gitignore +++ b/.gitignore @@ -46,3 +46,5 @@ pkg Gemfile.lock vendor/ + +homesick*.gem diff --git a/ChangeLog.markdown b/ChangeLog.markdown index 2b19ca7..cb0c5f2 100644 --- a/ChangeLog.markdown +++ b/ChangeLog.markdown @@ -1,3 +1,9 @@ +#1.1.3 + * Allow a destinaton to be passed when cloning a castle + * Make sure `homesick edit` opens default editor in the root of the given castle + * Fixed bug when diffing edited files + * Fixed crashing bug when attempting to diff directories + * Ensure that messages are escaped correctly on `git commit all` #1.1.2 * Added '--force' option to the rc command to bypass confirmation checks when running a .homesickrc file * Added a check to make sure that a minimum of Git 1.8.0 is installed. This stops Homesick failing silently if Git is not installed. diff --git a/homesick.gemspec b/homesick.gemspec index 0b7b778..dedc2ec 100644 --- a/homesick.gemspec +++ b/homesick.gemspec @@ -2,16 +2,16 @@ # DO NOT EDIT THIS FILE DIRECTLY # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec' # -*- encoding: utf-8 -*- -# stub: homesick 1.1.2 ruby lib +# stub: homesick 1.1.3 ruby lib Gem::Specification.new do |s| s.name = "homesick" - s.version = "1.1.2" + s.version = "1.1.3" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.require_paths = ["lib"] s.authors = ["Joshua Nichols", "Yusuke Murata"] - s.date = "2015-01-02" + s.date = "2015-10-31" s.description = "\n Your home directory is your castle. Don't leave your dotfiles behind.\n \n\n Homesick is sorta like rip, but for dotfiles. It uses git to clone a repository containing dotfiles, and saves them in ~/.homesick. It then allows you to symlink all the dotfiles into place with a single command. \n\n " s.email = ["josh@technicalpickles.com", "info@muratayusuke.com"] s.executables = ["homesick"] diff --git a/lib/homesick/version.rb b/lib/homesick/version.rb index e05b732..a3f9109 100644 --- a/lib/homesick/version.rb +++ b/lib/homesick/version.rb @@ -5,7 +5,7 @@ module Homesick module Version MAJOR = 1 MINOR = 1 - PATCH = 2 + PATCH = 3 STRING = [MAJOR, MINOR, PATCH].compact.join('.') end