Skip to content

Commit 987a0b4

Browse files
committed
Release 3.5.5
1 parent 24d2c3c commit 987a0b4

16 files changed

+24
-16
lines changed

.github/workflows/linters.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ on:
66
pull_request:
77
branches: [ main ]
88

9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
11+
cancel-in-progress: true
12+
913
jobs:
1014
rubocop:
1115
runs-on: ubuntu-20.04

.github/workflows/tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ on:
66
pull_request:
77
branches: [main]
88

9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
11+
cancel-in-progress: true
12+
913
jobs:
1014
source:
1115
runs-on: ubuntu-22.04

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.1, 3.2 and 3.3. Supported platforms are L
2323
Add this line to your application's Gemfile:
2424

2525
```ruby
26-
gem "couchbase", "3.5.4"
26+
gem "couchbase", "3.5.5"
2727
```
2828

2929
And then execute:

ext/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ target_link_libraries(
7777
Microsoft.GSL::GSL
7878
asio
7979
taocpp::json
80-
fmt::fmt
8180
spdlog::spdlog
8281
snappy)
8382
if(RUBY_LIBRUBY)

ext/couchbase

ext/rcb_analytics.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
#include <core/operations/management/analytics_link_get_all.hxx>
3737
#include <core/operations/management/analytics_link_replace.hxx>
3838

39-
#include <fmt/core.h>
39+
#include <spdlog/fmt/bundled/core.h>
4040

4141
#include <future>
4242
#include <memory>

ext/rcb_backend.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#include <core/utils/connection_string.hxx>
2323

2424
#include <asio/io_context.hpp>
25-
#include <fmt/core.h>
25+
#include <spdlog/fmt/bundled/core.h>
2626

2727
#include <future>
2828
#include <memory>

ext/rcb_buckets.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include <core/operations/management/bucket_get_all.hxx>
2525
#include <core/operations/management/bucket_update.hxx>
2626

27-
#include <fmt/core.h>
27+
#include <spdlog/fmt/bundled/core.h>
2828

2929
#include <future>
3030
#include <memory>

ext/rcb_collections.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#include <core/operations/management/scope_drop.hxx>
2424
#include <core/operations/management/scope_get_all.hxx>
2525

26-
#include <fmt/core.h>
26+
#include <spdlog/fmt/bundled/core.h>
2727

2828
#include <future>
2929
#include <memory>

ext/rcb_diagnostics.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
#include <core/cluster.hxx>
1919

20-
#include <fmt/core.h>
20+
#include <spdlog/fmt/bundled/core.h>
2121

2222
#include <future>
2323

ext/rcb_exceptions.cxx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717

1818
#include <couchbase/error.hxx>
1919
#include <couchbase/error_codes.hxx>
20-
#include <couchbase/fmt/retry_reason.hxx>
2120

2221
#include <core/error_context/analytics.hxx>
2322
#include <core/error_context/http.hxx>
@@ -27,7 +26,9 @@
2726
#include <core/error_context/view.hxx>
2827
#include <core/fmt/key_value_status_code.hxx>
2928

30-
#include <fmt/core.h>
29+
#include <spdlog/fmt/bundled/core.h>
30+
31+
#include <couchbase/fmt/retry_reason.hxx>
3132

3233
#include "rcb_exceptions.hxx"
3334
#include "rcb_utils.hxx"

ext/rcb_extras.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
#include <core/utils/unsigned_leb128.hxx>
2727
#include <core/utils/url_codec.hxx>
2828

29-
#include <fmt/core.h>
3029
#include <snappy.h>
30+
#include <spdlog/fmt/bundled/core.h>
3131

3232
#include <future>
3333
#include <string>

ext/rcb_range_scan.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include <core/scan_result.hxx>
2525
#include <couchbase/error_codes.hxx>
2626

27-
#include <fmt/core.h>
27+
#include <spdlog/fmt/bundled/core.h>
2828

2929
#include <future>
3030

ext/rcb_search.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
#include <core/operations/management/search_index_get_stats.hxx>
3131
#include <core/operations/management/search_index_upsert.hxx>
3232

33-
#include <fmt/core.h>
3433
#include <gsl/narrow>
34+
#include <spdlog/fmt/bundled/core.h>
3535

3636
#include <future>
3737
#include <memory>

ext/rcb_users.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
#include <core/operations/management/user_get_all.hxx>
2929
#include <core/operations/management/user_upsert.hxx>
3030

31-
#include <fmt/core.h>
32-
#include <fmt/ranges.h>
31+
#include <spdlog/fmt/bundled/core.h>
32+
#include <spdlog/fmt/bundled/ranges.h>
3333

3434
#include <future>
3535
#include <memory>

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.5.4")
24+
VERSION.update(:sdk => "3.5.5")
2525
end

0 commit comments

Comments
 (0)