Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This repository contains the third generation of the official Couchbase SDK for

## Support and Feedback

If you find an issue, please file it in [our JIRA issue tracker](https://couchbase.com/issues/browse/RCBC). Also you are
If you find an issue, please file it in [our JIRA issue tracker](https://jira.issues.couchbase.com/browse/RCBC). Also you are
always welcome on [our forum](https://forums.couchbase.com/c/ruby-sdk) and [Discord](https://discord.com/invite/sQ5qbPZuTh).

Please attach version information to the ticket/post. To obtain this information, use the following command:
Expand All @@ -23,7 +23,7 @@ The library has been tested with MRI 3.2, 3.3, 3.4 and 4.0. Supported platforms
Add this line to your application's Gemfile:

```ruby
gem "couchbase", "3.7.0"
gem "couchbase", "3.8.0"
```

And then execute:
Expand Down
2 changes: 1 addition & 1 deletion couchbase-opentelemetry/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ meter = Couchbase::OpenTelemetry::Meter.new(meter_provider)

# Configure tracer and meter in cluster options
options = Couchbase::Options::Cluster.new(
authenticator: Couchbase::PasswordAuthenticator.new("Administrator", "password")
authenticator: Couchbase::PasswordAuthenticator.new("Administrator", "password"),
tracer: tracer,
meter: meter
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
module Couchbase
module OpenTelemetry
# Version of the Couchbase OpenTelemetry integration gem
VERSION = "0.1.0"
VERSION = "3.8.0"
end
end
2 changes: 1 addition & 1 deletion lib/couchbase/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,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.7.0")
VERSION.update(:sdk => "3.8.0")
end
Loading