chore: update stew upper bound version

Bump package version to 0.2.1.

Signed-off-by: Chrysostomos Nanakos <chris@include.gr>
This commit is contained in:
Chrysostomos Nanakos 2025-11-06 14:04:42 +02:00
parent 39000fd4fc
commit 12ce26f5c2
No known key found for this signature in database
2 changed files with 10 additions and 4 deletions

View File

@ -23,16 +23,22 @@ jobs:
os: windows,
shell: msys2
}
nim: [2.0.14]
nim: [binary:2.2.4]
name: ${{ matrix.platform.icon }} ${{ matrix.platform.label }} - Nim v${{ matrix.nim }}
runs-on: ${{ matrix.platform.os }}-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: iffy/install-nim@v4
- uses: iffy/install-nim@v5
with:
version: ${{ matrix.nim }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Setup CMake
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: '3.x'
- name: Build
run: nimble install -y
- name: Test

View File

@ -1,7 +1,7 @@
mode = ScriptMode.Verbose
packageName = "datastore"
version = "0.2.0"
version = "0.2.1"
author = "Status Research & Development GmbH"
description = "Simple, unified API for multiple data stores"
license = "Apache License 2.0 or MIT"
@ -12,7 +12,7 @@ requires "nim >= 2.0.14",
"questionable >= 0.10.15 & < 0.11.0",
"sqlite3_abi >= 3.47.0.0 & < 4.0.0.0",
"leveldbstatic >= 0.2.0 & < 0.3.0",
"stew >= 0.2.0 & < 0.3.0",
"stew >= 0.4.0 & < 0.5.0",
"unittest2 >= 0.2.3 & < 0.3.0"
task coverage, "generates code coverage report":