Skip to content

Commit ddbcd6b

Browse files
committed
3.4.0
1 parent 049376e commit ddbcd6b

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

HISTORY

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Next Release:
1+
2017-08-28: 3.4.0
22
* [CHANGE] Delta callback logic now prioritises checking for high level settings rather than model changes.
33
* [FIX] Index normalisation now occurs consistently, and removes unneccesary sphinx_internal_class_name fields from real-time indices.
44
* [FEATURE] Rake tasks are now unified, so the original tasks will operate on real-time indices as well.

README.textile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
h1. Thinking Sphinx
22

3-
Thinking Sphinx is a library for connecting ActiveRecord to the Sphinx full-text search tool, and integrates closely with Rails (but also works with other Ruby web frameworks). The current release is v3.3.0.
3+
Thinking Sphinx is a library for connecting ActiveRecord to the Sphinx full-text search tool, and integrates closely with Rails (but also works with other Ruby web frameworks). The current release is v3.4.0.
44

55
h2. Upgrading
66

77
Please refer to the release notes for any changes you need to make when upgrading:
88

9+
* "v3.4.0":https://github.com/pat/thinking-sphinx/releases/tag/v3.4.0
910
* "v3.3.0":https://github.com/pat/thinking-sphinx/releases/tag/v3.3.0
1011
* "v3.2.0":https://github.com/pat/thinking-sphinx/releases/tag/v3.2.0
1112
* "v3.1.4":https://github.com/pat/thinking-sphinx/releases/tag/v3.1.4
@@ -21,9 +22,9 @@ h2. Installation
2122

2223
It's a gem, so install it like you would any other gem. You will also need to specify the mysql2 gem if you're using MRI, or jdbc-mysql if you're using JRuby:
2324

24-
<pre><code>gem 'mysql2', '~> 0.3.18', :platform => :ruby
25+
<pre><code>gem 'mysql2', '~> 0.3', :platform => :ruby
2526
gem 'jdbc-mysql', '= 5.1.35', :platform => :jruby
26-
gem 'thinking-sphinx', '~> 3.3.0'</code></pre>
27+
gem 'thinking-sphinx', '~> 3.4.0'</code></pre>
2728

2829
The MySQL gems mentioned are required for connecting to Sphinx, so please include it even when you're using PostgreSQL for your database. If you're using JRuby, there is "currently an issue with Sphinx and jdbc-mysql 5.1.36 or newer":http://sphinxsearch.com/forum/view.html?id=13939, so you'll need to stick to nothing more recent than 5.1.35.
2930

@@ -84,4 +85,4 @@ You can then run the unit tests with @rake spec:unit@, the acceptance tests with
8485

8586
h2. Licence
8687

87-
Copyright (c) 2007-2015, Thinking Sphinx is developed and maintained by Pat Allan, and is released under the open MIT Licence. Many thanks to "all who have contributed patches":https://github.com/pat/thinking-sphinx/contributors.
88+
Copyright (c) 2007-2017, Thinking Sphinx is developed and maintained by Pat Allan, and is released under the open MIT Licence. Many thanks to "all who have contributed patches":https://github.com/pat/thinking-sphinx/contributors.

thinking-sphinx.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ $:.push File.expand_path('../lib', __FILE__)
33

44
Gem::Specification.new do |s|
55
s.name = 'thinking-sphinx'
6-
s.version = '3.3.0'
6+
s.version = '3.4.0'
77
s.platform = Gem::Platform::RUBY
88
s.authors = ["Pat Allan"]
99
s.email = ["pat@freelancing-gods.com"]

0 commit comments

Comments
 (0)