Skip to content

Commit

Permalink
CXX-2696 Update libmongoc and libbson required dependency versions to…
Browse files Browse the repository at this point in the history
… 1.24.0 (#980)

* update dependency of libmongoc to 1.24.0

* update dependency of libbson to 1.24.0
  • Loading branch information
kevinAlbs authored Jun 21, 2023
1 parent 94fa3d2 commit 2e645d0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .mci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
#######################################
variables:

mongoc_version_default: &mongoc_version_default "a41683b76fce42f841318d5bb8d926154f9438c8" # TODO: update to 1.24.0 once released.
mongoc_version_default: &mongoc_version_default "1.24.0"

# If updating mongoc_version_minimum, also update:
# - the default value of --c-driver-build-ref in etc/make_release.py
# - LIBMONGOC_REQUIRED_VERSION in src/mongocxx/CMakeLists.txt
mongoc_version_minimum: &mongoc_version_minimum "a41683b76fce42f841318d5bb8d926154f9438c8" # TODO: update to 1.24.0 once released.
mongoc_version_minimum: &mongoc_version_minimum "1.24.0"

mongodb_version:
version_latest: &version_latest "latest"
Expand Down
2 changes: 1 addition & 1 deletion etc/make_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
show_default=True,
help='The remote reference which points to the mongodb/mongo-cxx-driver repo')
@click.option('--c-driver-build-ref',
default='a41683b76fce42f841318d5bb8d926154f9438c8',
default='1.24.0',
show_default=True,
help='When building the C driver, build at this Git reference')
@click.option('--with-c-driver',
Expand Down
2 changes: 1 addition & 1 deletion src/bsoncxx/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ message ("bsoncxx version: ${BSONCXX_VERSION}")
set(BSONCXX_INLINE_NAMESPACE "v${BSONCXX_ABI_VERSION}")
set(BSONCXX_HEADER_INSTALL_DIR "${CMAKE_INSTALL_INCLUDEDIR}/bsoncxx/${BSONCXX_INLINE_NAMESPACE}" CACHE INTERNAL "")

set(LIBBSON_REQUIRED_VERSION 1.13.0)
set(LIBBSON_REQUIRED_VERSION 1.24.0)
set(LIBBSON_REQUIRED_ABI_VERSION 1.0)

set(bsoncxx_pkg_dep "")
Expand Down
2 changes: 1 addition & 1 deletion src/mongocxx/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ message ("mongocxx version: ${MONGOCXX_VERSION}")
set(MONGOCXX_INLINE_NAMESPACE "v${MONGOCXX_ABI_VERSION}")
set(MONGOCXX_HEADER_INSTALL_DIR "${CMAKE_INSTALL_INCLUDEDIR}/mongocxx/${MONGOCXX_INLINE_NAMESPACE}" CACHE INTERNAL "")

set(LIBMONGOC_REQUIRED_VERSION 1.22.1) # TODO: update to 1.24.0 once released.
set(LIBMONGOC_REQUIRED_VERSION 1.24.0)
set(LIBMONGOC_REQUIRED_ABI_VERSION 1.0)

set(mongocxx_pkg_dep "")
Expand Down

0 comments on commit 2e645d0

Please sign in to comment.