From a0a53c911606cace989074f6b806eb0546a64ef6 Mon Sep 17 00:00:00 2001 From: tersec Date: Mon, 10 Jun 2024 19:11:33 +0000 Subject: [PATCH] deprecate stew/results (#219) * deprecate stew/results * Update stew/results.nim * use evergreen OS image versions in GitHub Actions CI * revert macos-latest --- .github/workflows/ci.yml | 4 ++-- stew/results.nim | 4 +--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 495ff2e..ab4ad54 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: include: - target: os: linux - builder: ubuntu-20.04 + builder: ubuntu-latest shell: bash - target: os: macos @@ -38,7 +38,7 @@ jobs: shell: bash - target: os: windows - builder: windows-2019 + builder: windows-latest shell: msys2 {0} defaults: diff --git a/stew/results.nim b/stew/results.nim index a5c550b..8b55094 100644 --- a/stew/results.nim +++ b/stew/results.nim @@ -1,9 +1,7 @@ # This module has graduated from stew and is now available from the # `results` nimble package instead (https://github.com/arnetheduck/nim-results) -when defined(stewWarnResults): - # This deprecation notice will be made default in some future stew commit - {.deprecated: "`stew/results` is now availabe as `import results` via the `results` Nimble package".} +{.deprecated: "`stew/results` is now available as `import results` via the `results` Nimble package".} import pkg/results export results