Merge pull request #39 from karenetheridge/topic/clean_up_changes_file_and_prereq
Topic/clean up changes file and prereq
This commit is contained in:
commit
a910724bb5
2 changed files with 20 additions and 10 deletions
28
Changes
28
Changes
|
@ -1,20 +1,30 @@
|
||||||
|
|
||||||
|
0.001000 2013-02-26 SymKat <symkat@symkat.com>
|
||||||
* fixed a warning on "uninitialized value $called_with in substitution"
|
* fixed a warning on "uninitialized value $called_with in substitution"
|
||||||
(Kromg)
|
(Kromg)
|
||||||
|
|
||||||
* include the date and module version in the generated init file
|
* include the date and module version in the generated init file
|
||||||
(Karen Etheridge)
|
(Karen Etheridge)
|
||||||
|
|
||||||
0.0.9 2012-19-04 SymKat <symkat@symkat.com>
|
* warn is used rather than printing to STDERR
|
||||||
|
* new options: kill_timeout, reload, umask, init_code, do_help
|
||||||
|
* new functions: do_help, trace
|
||||||
|
* pid file is now written as the current user, then chowned to the target user
|
||||||
|
* pid file is now written when single-forking
|
||||||
|
* gid is calculated when not provided but the uid is, avoiding some
|
||||||
|
warnings
|
||||||
|
|
||||||
|
0.000009 2012-04-19 SymKat <symkat@symkat.com>
|
||||||
* Stole Moo's MANIFEST.SKIP
|
* Stole Moo's MANIFEST.SKIP
|
||||||
|
|
||||||
0.0.8 2012-19-04 SymKat <symkat@symkat.com>
|
0.000008 2012-04-19 SymKat <symkat@symkat.com>
|
||||||
* Added Makefile to MANIFEST.SKIP
|
* Added Makefile to MANIFEST.SKIP
|
||||||
|
|
||||||
0.0.7 2012-15-04 SymKat <symkat@symkat.com>
|
0.000007 2012-04-15 SymKat <symkat@symkat.com>
|
||||||
* Added user and group accessors to set uid/gid based on names
|
* Added user and group accessors to set uid/gid based on names
|
||||||
* Updated docs.
|
* Updated docs.
|
||||||
|
|
||||||
0.0.6 2012-15-04 SymKat <symkat@symkat.com>
|
0.000006 2012-04-15 SymKat <symkat@symkat.com>
|
||||||
* PID file will be deleted on do_stop
|
* PID file will be deleted on do_stop
|
||||||
* PID file will be created by the target user when ->uid set
|
* PID file will be created by the target user when ->uid set
|
||||||
* uid() and gid() now take strings as well (doherty)
|
* uid() and gid() now take strings as well (doherty)
|
||||||
|
@ -23,22 +33,22 @@
|
||||||
* Typo fixes
|
* Typo fixes
|
||||||
* Mike Doherty (doherty) added to contrib (Thank you!)
|
* Mike Doherty (doherty) added to contrib (Thank you!)
|
||||||
|
|
||||||
0.0.5 2012-18-02 SymKat <symkat@symkat.com>
|
0.000005 2012-02-18 SymKat <symkat@symkat.com>
|
||||||
* Fixed an issue with the inital PID being invalid.
|
* Fixed an issue with the inital PID being invalid.
|
||||||
* Added directory accessor to support chdir before exec.
|
* Added directory accessor to support chdir before exec.
|
||||||
* Minor documentation changes
|
* Minor documentation changes
|
||||||
|
|
||||||
0.0.4 2012-18-02 SymKat <symkat@symkat.com>
|
0.000004 2012-02-18 SymKat <symkat@symkat.com>
|
||||||
* First release to cpan.
|
* First release to cpan.
|
||||||
* Refactoring and review by Matt S. Trout
|
* Refactoring and review by Matt S. Trout
|
||||||
* I really changed the version this time!
|
* I really changed the version this time!
|
||||||
|
|
||||||
0.0.3 2012-18-02 SymKat <symkat@symkat.com>
|
0.000003 2012-02-18 SymKat <symkat@symkat.com>
|
||||||
* Test added for show_warnings.
|
* Test added for show_warnings.
|
||||||
* Documentation updated for 0.0.2 changes.
|
* Documentation updated for 0.0.2 changes.
|
||||||
* Version changed this time.
|
* Version changed this time.
|
||||||
|
|
||||||
0.0.2 2012-18-02 SymKat <symkat@symkat.com>
|
0.000002 2012-02-18 SymKat <symkat@symkat.com>
|
||||||
* Default fork mode changed to double.
|
* Default fork mode changed to double.
|
||||||
* Added show_warnings command instead of alerting
|
* Added show_warnings command instead of alerting
|
||||||
about DWIM actions.
|
about DWIM actions.
|
||||||
|
@ -48,5 +58,5 @@
|
||||||
* redirect_before_fork added (default 1)
|
* redirect_before_fork added (default 1)
|
||||||
* With a code ref, $self is passed (can $control->redriect_filehandles)
|
* With a code ref, $self is passed (can $control->redriect_filehandles)
|
||||||
|
|
||||||
0.0.1 2012-02-02 SymKat <symkat@symkat.com>
|
0.000001 2012-02-02 SymKat <symkat@symkat.com>
|
||||||
* Inital Commit
|
* Inital Commit
|
||||||
|
|
|
@ -14,6 +14,6 @@ requires 'POSIX' => '0';
|
||||||
requires 'Cwd' => '0';
|
requires 'Cwd' => '0';
|
||||||
requires 'File::Path' => '2.08';
|
requires 'File::Path' => '2.08';
|
||||||
|
|
||||||
test_requires 'Test::More' => '0.42';
|
test_requires 'Test::More' => '0.88';
|
||||||
|
|
||||||
WriteAll;
|
WriteAll;
|
||||||
|
|
Loading…
Add table
Reference in a new issue