Skip to content

Commit

Permalink
Version bump to 0.1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethkalmer committed Aug 4, 2010
1 parent 650c58c commit fc314f0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions History.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
== 0.1.18.1 2010-08-04

* Fixed issue with our own amqp.rb file causing havoc on Ruby 1.8.7

== 0.1.18 2010-08-03

* Generators rewritten to use Thor
Expand Down
6 changes: 3 additions & 3 deletions daemon-kit.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

Gem::Specification.new do |s|
s.name = %q{daemon-kit}
s.version = "0.1.8"
s.version = "0.1.8.1"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["kenneth.kalmer@gmail.com"]
s.date = %q{2010-08-03}
s.date = %q{2010-08-04}
s.default_executable = %q{daemon-kit}
s.description = %q{daemon-kit aims to simplify creating Ruby daemons by providing a sound application skeleton (through a generator), task specific generators (jabber bot, etc) and robust environment management code.}
s.email = %q{kenneth.kalmer@gmail.com}
Expand Down Expand Up @@ -40,7 +40,6 @@ Gem::Specification.new do |s|
"daemon-kit.gemspec",
"lib/daemon_kit.rb",
"lib/daemon_kit/abstract_logger.rb",
"lib/daemon_kit/amqp.rb",
"lib/daemon_kit/application.rb",
"lib/daemon_kit/arguments.rb",
"lib/daemon_kit/commands/console.rb",
Expand All @@ -54,6 +53,7 @@ Gem::Specification.new do |s|
"lib/daemon_kit/cron.rb",
"lib/daemon_kit/cucumber/world.rb",
"lib/daemon_kit/deployment/capistrano.rb",
"lib/daemon_kit/dk_amqp.rb",
"lib/daemon_kit/em.rb",
"lib/daemon_kit/error_handlers/base.rb",
"lib/daemon_kit/error_handlers/hoptoad.rb",
Expand Down
2 changes: 1 addition & 1 deletion lib/daemon_kit.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
$LOAD_PATH.include?( File.dirname(__FILE__).to_absolute_path )

module DaemonKit
VERSION = '0.1.8'
VERSION = '0.1.8.1'

autoload :Initializer, 'daemon_kit/initializer'
autoload :Application, 'daemon_kit/application'
Expand Down

0 comments on commit fc314f0

Please sign in to comment.