Skip to content

Commit

Permalink
moving towards 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zuk committed May 1, 2009
1 parent 1aed47f commit 3bce5b0
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions History.txt
@@ -1,3 +1,13 @@
=== 0.8.1 :: 2009-05-01

* The bundled version of camping has been updated so we are now compatible with
Passenger 2.2.
* We now attempt to check for app loading errors during startup, rather than
waiting for the first request. This should make debugging bad Camping apps
a bit easier.
* Mix bug fixes throughout.


=== 0.8.0 :: 2009-03-18

* Overhauled for Camping 2.0. Major changes throughout. Some things to
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -22,7 +22,7 @@ ENV['NODOT'] = '1'

NAME = "picnic"
REV = nil
#REV = Time.now.strftime('%Y%m%d%H%M')
REV = Time.now.strftime('%Y%m%d%H%M')
#REV = `svn info`[/Revision: (\d+)/, 1] rescue nil
VERS = ENV['VERSION'] || (Picnic::VERSION::STRING + (REV ? ".#{REV}" : ""))
CLEAN.include ['**/.*.sw?', '*.gem', '.config']
Expand Down
2 changes: 1 addition & 1 deletion lib/picnic/version.rb
Expand Up @@ -2,7 +2,7 @@ module Picnic #:nodoc:
module VERSION #:nodoc:
MAJOR = 0
MINOR = 8
TINY = 0
TINY = 1

STRING = [MAJOR, MINOR, TINY].join('.')
end
Expand Down
2 changes: 1 addition & 1 deletion picnic.gemspec
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |s|
s.name = %q{picnic}
s.version = '0.8.0.' + Time.now.strftime('%Y%m%d')
s.version = '0.8.1.' + Time.now.strftime('%Y%m%d')

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Matt Zukowski"]
Expand Down

0 comments on commit 3bce5b0

Please sign in to comment.