From 12ce26f5c25f1f63dccdaebef76f1ebc8a6b8c3a Mon Sep 17 00:00:00 2001 From: Chrysostomos Nanakos Date: Thu, 6 Nov 2025 14:04:42 +0200 Subject: [PATCH] chore: update stew upper bound version Bump package version to 0.2.1. Signed-off-by: Chrysostomos Nanakos --- .github/workflows/tests.yml | 10 ++++++++-- datastore.nimble | 4 ++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d44106c..2b0ea9b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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 diff --git a/datastore.nimble b/datastore.nimble index b4aea80..d9da801 100644 --- a/datastore.nimble +++ b/datastore.nimble @@ -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":