Skip to content

Commit

Permalink
update meta for 3.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
avsej committed Oct 10, 2023
1 parent c369222 commit 276c680
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The library has been tested with MRI 3.0, 3.1 and 3.2. Supported platforms are L
Add this line to your application's Gemfile:

```ruby
gem "couchbase", "3.4.4"
gem "couchbase", "3.4.5"
```

And then execute:
Expand Down
2 changes: 1 addition & 1 deletion lib/couchbase/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ module Couchbase
# $ ruby -rcouchbase -e 'pp Couchbase::VERSION'
# {:sdk=>"3.4.0", :ruby_abi=>"3.1.0", :revision=>"416fe68e6029ec8a4c40611cf6e6b30d3b90d20f"}
VERSION = {} unless defined?(VERSION) # rubocop:disable Style/MutableConstant
VERSION.update(:sdk => "3.4.5.snapshot".freeze)
VERSION.update(:sdk => "3.4.5".freeze)
end
2 changes: 1 addition & 1 deletion test/collection_manager_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def test_create_collection_scope_does_not_exist
assert_raises(Error::BucketNotFound) do
@collection_manager.create_collection(scope_name, coll_name)
end
assert_match /scope_not_found/, exc.message
assert_match(/scope_not_found/, exc.message)
else
assert_raises(Error::ScopeNotFound) do
@collection_manager.create_collection(scope_name, coll_name)
Expand Down

0 comments on commit 276c680

Please sign in to comment.