-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bumped version to 2.0.0 and added a CHANGELOG file (proposal)
- Loading branch information
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# 2.0.0 | ||
|
||
* Enhancements | ||
|
||
* Implemented :in redirection, i.e. spawn("...", :in => ...) | ||
* Implemented :close redirection, i.e. spawn("...", :out/err/in => :close) | ||
* Removed spawn override if ruby version is >= 1.9 | ||
* Project structure enhanced with Rakefile and SFL::VERSION | ||
* Spec suite runs against Kernel.spawn to ensure comptability with native spawn in 1.9 | ||
|
||
* Bugfixes | ||
|
||
* Fix the spec suite for ruby version 1.9.2 | ||
|
||
* Known bugs | ||
|
||
* The spec suite may fail under ruby 1.9.1, due to ruby bugs on some spawn redirect options | ||
|
||
# 1.2.0 | ||
|
||
* Enhancements | ||
|
||
* Added support for quoted command arguments and spaces | ||
* Defined spawn even if the ruby version is 1.9 | ||
|
||
# 1.1.1 | ||
|
||
* Enhancements | ||
|
||
* Added Process.spawn in addition to Kernel.spawn | ||
* Added support for Ruby 1.8.6 | ||
|
||
# 1.1.0 | ||
|
||
* Enhancements | ||
|
||
* Birthday | ||
|
||
|