Skip to content

Commit 714b50d

Browse files
committed
increase version numbers for 1.2.3 release
add another example
1 parent 3e9eb8f commit 714b50d

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

Releases

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
= Daemons Release History
22

3+
== Release 1.2.3: June 25, 2015
4+
5+
* fix: ApplicationGroup now waits on subprocesses in start_all (thanks to tobithiel)
6+
37
== Release 1.2.2: March 17, 2015
48

59
* fix 100% CPU usage bug when using monitor mode.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
lib_dir = File.expand_path(File.join(File.dirname(__FILE__), '../../lib'))
2+
3+
if File.exist?(File.join(lib_dir, 'daemons.rb'))
4+
$LOAD_PATH.unshift lib_dir
5+
else
6+
begin; require 'rubygems'; rescue ::Exception; end
7+
end
8+
9+
require 'daemons'
10+
11+
options = {
12+
:monitor => true
13+
}
14+
15+
Daemons.run(File.join(File.dirname(__FILE__), 'myserver.rb'), options)

lib/daemons/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Daemons
2-
VERSION = '1.2.2'
2+
VERSION = '1.2.3'
33
end

0 commit comments

Comments
 (0)