Skip to content

Commit 42f03e6

Browse files
committed
Release 3.5.5
1 parent 24d2c3c commit 42f03e6

14 files changed

+16
-16
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.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,7 +26,7 @@
2626
#include <core/utils/unsigned_leb128.hxx>
2727
#include <core/utils/url_codec.hxx>
2828

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

3232
#include <future>

0 commit comments

Comments
 (0)