Skip to content

Commit 276c680

Browse files
committed
update meta for 3.4.5
1 parent c369222 commit 276c680

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The library has been tested with MRI 3.0, 3.1 and 3.2. Supported platforms are L
2323
Add this line to your application's Gemfile:
2424

2525
```ruby
26-
gem "couchbase", "3.4.4"
26+
gem "couchbase", "3.4.5"
2727
```
2828

2929
And then execute:

lib/couchbase/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ module Couchbase
1919
# $ ruby -rcouchbase -e 'pp Couchbase::VERSION'
2020
# {:sdk=>"3.4.0", :ruby_abi=>"3.1.0", :revision=>"416fe68e6029ec8a4c40611cf6e6b30d3b90d20f"}
2121
VERSION = {} unless defined?(VERSION) # rubocop:disable Style/MutableConstant
22-
VERSION.update(:sdk => "3.4.5.snapshot".freeze)
22+
VERSION.update(:sdk => "3.4.5".freeze)
2323
end

test/collection_manager_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def test_create_collection_scope_does_not_exist
157157
assert_raises(Error::BucketNotFound) do
158158
@collection_manager.create_collection(scope_name, coll_name)
159159
end
160-
assert_match /scope_not_found/, exc.message
160+
assert_match(/scope_not_found/, exc.message)
161161
else
162162
assert_raises(Error::ScopeNotFound) do
163163
@collection_manager.create_collection(scope_name, coll_name)

0 commit comments

Comments
 (0)