diff --git a/README.md b/README.md
index 74ee182..3d6733c 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@
-A high-performance Go library that provides a simple and elegant way to interact with PostgreSQL databases. It allows you to define your entities as structs with pg tags, register them in a schema, and perform CRUD operations using a repository pattern. It also handles database connection, schema creation and verification, and query generation and execution. You can use PG to write concise and readable code that works with PostgreSQL databases.
+A high-performance Go library that provides a simple and elegant way to interact with PostgreSQL databases (works perfectly with the latest 16.x versions). It allows you to define your entities as structs with pg tags, register them in a schema, and perform CRUD operations using a repository pattern. It also handles database connection, schema creation and verification, and query generation and execution. You can use PG to write concise and readable code that works with PostgreSQL databases.
diff --git a/db_information_test.go b/db_information_test.go
index d746d7d..facfb71 100644
--- a/db_information_test.go
+++ b/db_information_test.go
@@ -6,7 +6,7 @@ import (
)
// This should match the CI's postgres version.
-const expectedDBVersion = "16.0"
+const expectedDBVersion = "16"
func TestInformation_GetVersion(t *testing.T) {
db, err := openEmptyTestConnection()