Skip to content

Commit c609eb0

Browse files
authored
Release 3.8.0 (#223)
Bump couchbase and couchbase-opentelemetry gem versions to 3.8.0, update the README gem reference and JIRA link, and fix a missing comma in the couchbase-opentelemetry README code snippet.
1 parent 8991692 commit c609eb0

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This repository contains the third generation of the official Couchbase SDK for
99

1010
## Support and Feedback
1111

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

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

2525
```ruby
26-
gem "couchbase", "3.7.0"
26+
gem "couchbase", "3.8.0"
2727
```
2828

2929
And then execute:

couchbase-opentelemetry/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ meter = Couchbase::OpenTelemetry::Meter.new(meter_provider)
5555

5656
# Configure tracer and meter in cluster options
5757
options = Couchbase::Options::Cluster.new(
58-
authenticator: Couchbase::PasswordAuthenticator.new("Administrator", "password")
58+
authenticator: Couchbase::PasswordAuthenticator.new("Administrator", "password"),
5959
tracer: tracer,
6060
meter: meter
6161
)

couchbase-opentelemetry/lib/couchbase/opentelemetry/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
module Couchbase
1818
module OpenTelemetry
1919
# Version of the Couchbase OpenTelemetry integration gem
20-
VERSION = "0.1.0"
20+
VERSION = "3.8.0"
2121
end
2222
end

lib/couchbase/version.rb

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

0 commit comments

Comments
 (0)