Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

strategy:
matrix:
nim-version: ['1.4.0', 'stable', 'devel']
nim-version: ['2.0.0', 'stable', 'devel']

services:
postgres:
Expand Down
9 changes: 4 additions & 5 deletions lowdb.nimble
Original file line number Diff line number Diff line change
@@ -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"]

Expand Down Expand Up @@ -54,4 +53,4 @@ task stopContainers, "Stops a postgres container used for norm tests":
if commandLineParams.asSudo():
command = fmt"sudo {command}"

exec command
exec command
Loading