diff --git a/src/CaosDB.jl b/src/CaosDB.jl
index 3f0811a73c4b31458e3b6d63318433ed4a806f58..e15b46db7c84354f7c72d818ce83fc57dee117b6 100644
--- a/src/CaosDB.jl
+++ b/src/CaosDB.jl
@@ -28,6 +28,9 @@ module CaosDB
 export evaluate_return_code,
     CaosDBException, ClientException, GenericCaosDBException, CaosDBMessage
 
+# Exports from module Constants
+export MIN_CCAOSDB_VERSION
+
 # Exports from module Utility
 export get_ccaosdb_version, get_env_fallback
 
@@ -122,6 +125,8 @@ end
 
 include("Exceptions.jl")
 
+include("Constants.jl")
+
 include("Info.jl")
 
 include("Utility.jl")
@@ -134,6 +139,7 @@ include("Entity.jl")
 
 include("Transaction.jl")
 
-using .Exceptions, .Info, .Authentication, .Connection, .Utility, .Entity, .Transaction
+using .Exceptions,
+    .Constants, .Info, .Authentication, .Connection, .Utility, .Entity, .Transaction
 
 end # CaosDB
diff --git a/test/runtests.jl b/test/runtests.jl
index 5bccba5cd56c22b324c59536ecb21f7b5b1b2ee2..8f522788fc801d7718e35d90b483af5f4f547c69 100644
--- a/test/runtests.jl
+++ b/test/runtests.jl
@@ -25,7 +25,7 @@ using CaosDB
 
 @testset "CaosDBUnitTests" begin
     @testset "TestCaosdbCppLibVersion" begin
-        @test CaosDB.Utility.get_ccaosdb_version() >= v"0.0.16"
+        @test CaosDB.Utility.get_ccaosdb_version() >= CaosDB.Constants.MIN_CCAOSDB_VERSION
     end
 
     @testset "TestUtility" begin