From a44bc2a63f3109f691caf72abdaf61e2653f20f0 Mon Sep 17 00:00:00 2001 From: Andy Davidoff Date: Mon, 18 Jan 2021 17:03:12 -0500 Subject: [PATCH] 1.8.27: switch to balls --- bump.nimble | 8 ++++---- tests/tbump.nim | 4 ++-- tests/tbump.nim.cfg | 4 ---- 3 files changed, 6 insertions(+), 10 deletions(-) delete mode 100644 tests/tbump.nim.cfg diff --git a/bump.nimble b/bump.nimble index e39e84e..9e97af6 100644 --- a/bump.nimble +++ b/bump.nimble @@ -1,11 +1,11 @@ -version = "1.8.26" +version = "1.8.27" author = "disruptek" description = "a tiny tool to bump nimble versions" license = "MIT" requires "https://github.com/disruptek/cutelog >= 1.1.2 & < 2.0.0" when not defined(release): - requires "https://github.com/disruptek/testes >= 1.0.0 & < 2.0.0" + requires "https://github.com/disruptek/balls >= 2.0.0 & < 3.0.0" bin = @["bump"] @@ -16,6 +16,6 @@ else: task test, "run tests for ci": when defined(windows): - exec "testes.cmd" + exec "balls.cmd" else: - exec findExe"testes" + exec findExe"balls" diff --git a/tests/tbump.nim b/tests/tbump.nim index dd09b37..8c97150 100644 --- a/tests/tbump.nim +++ b/tests/tbump.nim @@ -3,9 +3,9 @@ import std/strutils import std/options import bump -import testes +import balls -testes: +suite "tests of bump": let ver123 {.used.} = (major: 1'u, minor: 2'u, patch: 3'u) ver155 {.used.} = (major: 1'u, minor: 5'u, patch: 5'u) diff --git a/tests/tbump.nim.cfg b/tests/tbump.nim.cfg deleted file mode 100644 index 1d02bf0..0000000 --- a/tests/tbump.nim.cfg +++ /dev/null @@ -1,4 +0,0 @@ ---hint[Processing]=off ---hint[Conf]=off ---hint[Link]=off -path=".."