Update .nimble file to support Nimble 0.22+
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
const VERSION* = "2.0.1"
|
const VERSION* = "2.0.2"
|
||||||
|
|
||||||
const USAGE* = """
|
const USAGE* = """
|
||||||
Usage:
|
Usage:
|
||||||
@@ -60,4 +60,4 @@ Options:
|
|||||||
Show or hide information about files which are found only in the right
|
Show or hide information about files which are found only in the right
|
||||||
tree.
|
tree.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
+7
-4
@@ -1,5 +1,5 @@
|
|||||||
# Package
|
# Package
|
||||||
version = "2.0.1"
|
version = "2.0.2"
|
||||||
author = "Jonathan Bernard (jdb@jdb-labs.com)"
|
author = "Jonathan Bernard (jdb@jdb-labs.com)"
|
||||||
description = "Utility to generate diffs of full directory trees."
|
description = "Utility to generate diffs of full directory trees."
|
||||||
license = "BSD"
|
license = "BSD"
|
||||||
@@ -7,10 +7,13 @@ bin = @["treediff"]
|
|||||||
srcDir = "src/main/nim"
|
srcDir = "src/main/nim"
|
||||||
|
|
||||||
# Dependencies
|
# 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
|
# 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.":
|
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'"
|
||||||
Reference in New Issue
Block a user