diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d2e9ea6..29fa325 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,7 +19,7 @@ jobs: strategy: matrix: - nim-version: ['1.4.0', 'stable', 'devel'] + nim-version: ['2.0.0', 'stable', 'devel'] services: postgres: diff --git a/lowdb.nimble b/lowdb.nimble index c5dc11c..49f80d2 100644 --- a/lowdb.nimble +++ b/lowdb.nimble @@ -1,12 +1,11 @@ -version = "0.2.1" +version = "0.3.0" author = "Philipp Doerner" # Original Author of the package description = "Low level db_sqlite and db_postgres forks with a proper typing" license = "MIT" srcDir = "src" -requires "nim >= 1.4.0" -when NimMajor == 2 or (NimMajor >= 1 and NimMinor >= 9): - requires "db_connector >= 0.1.0" +requires "nim >= 2.0.0" +requires "db_connector >= 0.1.0" skipDirs = @["tests"] @@ -54,4 +53,4 @@ task stopContainers, "Stops a postgres container used for norm tests": if commandLineParams.asSudo(): command = fmt"sudo {command}" - exec command \ No newline at end of file + exec command