Preparing for 1.1.3 release.
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -46,3 +46,5 @@ pkg
|
||||
|
||||
Gemfile.lock
|
||||
vendor/
|
||||
|
||||
homesick*.gem
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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"]
|
||||
|
||||
@@ -5,7 +5,7 @@ module Homesick
|
||||
module Version
|
||||
MAJOR = 1
|
||||
MINOR = 1
|
||||
PATCH = 2
|
||||
PATCH = 3
|
||||
|
||||
STRING = [MAJOR, MINOR, PATCH].compact.join('.')
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user