Skip to content

Commit

Permalink
Prepare for 0.9.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mperham committed Aug 28, 2010
1 parent 415fa19 commit 8043898
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions History.md
@@ -1,12 +1,12 @@
Dalli Changelog
=====================

HEAD
0.9.1
----

- Add fetch and cas operations (mperham)
- Add incr and decr operations (mperham)
- Add support for SASL authentication via the MEMCACHE_{USERNAME,PASSWORD} env variables, needed for Heroku (mperham)
- Initial support for SASL authentication via the MEMCACHE_{USERNAME,PASSWORD} environment variables, needed for Heroku (mperham)

0.9.0
-----
Expand Down
5 changes: 3 additions & 2 deletions dalli.gemspec
Expand Up @@ -7,12 +7,13 @@ Gem::Specification.new do |s|
s.version = Dalli::VERSION

s.authors = ["Mike Perham"]
s.date = %q{2010-08-19}
s.date = %q{2010-08-28}
s.description = %q{High performance memcached client for Ruby}
s.email = %q{mperham@gmail.com}
s.files = Dir.glob("lib/**/*") + [
"LICENSE",
"README.md",
"History.md",
"TODO.md",
"Rakefile",
"Gemfile",
Expand All @@ -26,7 +27,7 @@ Gem::Specification.new do |s|
s.test_files = Dir.glob("test/**/*")
s.add_development_dependency(%q<shoulda>, [">= 0"])
s.add_development_dependency(%q<mocha>, [">= 0"])
s.add_development_dependency(%q<rails>, [">= 3.0.0.rc"])
s.add_development_dependency(%q<rails>, [">= 3.0.0.rc2"])
s.add_development_dependency(%q<memcache-client>, [">= 1.8.5"])
end

2 changes: 1 addition & 1 deletion lib/dalli/version.rb
@@ -1,3 +1,3 @@
module Dalli
VERSION = '0.9.0'
VERSION = '0.9.1'
end

0 comments on commit 8043898

Please sign in to comment.