Skip to content

Commit

Permalink
0.7.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
dougal committed Feb 22, 2011
1 parent 5d22fbb commit 6548a6c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
@@ -1,3 +1,6 @@
===0.7.1 [22nd February 2011]
- Removed file locking on Microsoft Windows as it is unsupported.

===0.7.0 [11th February 2011]
- Threadsafe support. Index files are now locked for changes, and atomically written.
- Configurable case-sensitivity.
Expand Down
10 changes: 6 additions & 4 deletions Gemfile
@@ -1,6 +1,8 @@
source "http://rubygems.org"

gem "jeweler"
gem "mocha"
gem "sqlite3-ruby"
gem "rcov"
group :test do
gem "jeweler"
gem "mocha"
gem "sqlite3-ruby"
gem "rcov"
end
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
0.7.0
0.7.1
7 changes: 3 additions & 4 deletions acts_as_indexed.gemspec
Expand Up @@ -5,11 +5,11 @@

Gem::Specification.new do |s|
s.name = %q{acts_as_indexed}
s.version = "0.7.0"
s.version = "0.7.1"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Douglas F Shearer"]
s.date = %q{2011-02-11}
s.date = %q{2011-02-22}
s.description = %q{Acts As Indexed is a plugin which provides a pain-free way to add fulltext search to your Ruby on Rails app}
s.email = %q{dougal.s@gmail.com}
s.extra_rdoc_files = [
Expand Down Expand Up @@ -46,7 +46,7 @@ Gem::Specification.new do |s|
]
s.homepage = %q{http://github.com/dougal/acts_as_indexed}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.rubygems_version = %q{1.5.2}
s.summary = %q{Acts As Indexed is a plugin which provides a pain-free way to add fulltext search to your Ruby on Rails app}
s.test_files = [
"test/abstract_unit.rb",
Expand All @@ -59,7 +59,6 @@ Gem::Specification.new do |s|
]

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
Expand Down

0 comments on commit 6548a6c

Please sign in to comment.