Preserve DateTime microsecond precision

This commit is contained in:
jdb
2026-08-31 17:52:09 -05:00
parent 2301da8143
commit f2f41782d4
5 changed files with 123 additions and 14 deletions
+10 -1
View File
@@ -1,6 +1,6 @@
# Package
version = "4.2.0"
version = "4.3.0"
author = "Jonathan Bernard"
description = "Lightweight Postgres ORM for Nim."
license = "GPL-3.0"
@@ -12,3 +12,12 @@ srcDir = "src"
requires @["nim >= 1.4.0", "uuids"]
requires "namespaced_logging >= 2.0.2"
# Tasks
task unittest, "Runs the unit test suite.":
exec "nim c -r --path:src tests/test_datetime"
task integrationtest, "Runs the PostgreSQL integration test suite.":
exec "nim c -r --path:src tests/test_datetime_postgres"