From 78a8bb2c757f771858dc84336d1129f64d1c88bb Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Tue, 7 Jul 2026 14:49:59 -0500 Subject: [PATCH] Update .nimble file to support Nimble 0.22+ --- src/main/nim/cliconstants.nim | 4 ++-- treediff.nimble | 11 +++++++---- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/src/main/nim/cliconstants.nim b/src/main/nim/cliconstants.nim index ff78c8d..0649ba4 100644 --- a/src/main/nim/cliconstants.nim +++ b/src/main/nim/cliconstants.nim @@ -1,4 +1,4 @@ -const VERSION* = "2.0.1" +const VERSION* = "2.0.2" const USAGE* = """ Usage: @@ -60,4 +60,4 @@ Options: Show or hide information about files which are found only in the right tree. -""" +""" \ No newline at end of file diff --git a/treediff.nimble b/treediff.nimble index 700c810..4fd99d8 100644 --- a/treediff.nimble +++ b/treediff.nimble @@ -1,5 +1,5 @@ # Package -version = "2.0.1" +version = "2.0.2" author = "Jonathan Bernard (jdb@jdb-labs.com)" description = "Utility to generate diffs of full directory trees." license = "BSD" @@ -7,10 +7,13 @@ bin = @["treediff"] srcDir = "src/main/nim" # Dependencies -requires: @["nim >= 2.0.0", "docopt == 0.7.1", "checksums"] +requires "nim >= 2.0.0" +requires "docopt == 0.7.1" +requires "checksums" # Dependencies from git.jdb-software.com/jdb/nim-packages -requires: @["console_progress >= 1.2.2", "update_nim_package_version"] +requires "console_progress >= 1.2.2" +requires "update_nim_package_version" task updateVersion, "Update the version of this package.": - exec "update_nim_package_version treediff 'src/main/nim/cliconstants.nim'" + exec "update_nim_package_version treediff 'src/main/nim/cliconstants.nim'" \ No newline at end of file