2 Commits
Author SHA1 Message Date
jdb f98c16cc2a Update .nimble file for Nimble 0.22+ 2026-07-07 09:19:44 -05:00
jdb 03b1d901ee Use named package for update-nim-package-version. 2025-03-07 04:11:50 -06:00
2 changed files with 7 additions and 10 deletions
+6 -9
View File
@@ -1,6 +1,6 @@
# Package # Package
version = "1.0.2" version = "1.0.3"
author = "Jonathan Bernard" author = "Jonathan Bernard"
description = "Utility for managing data-uris: transforming data to and from, etc." description = "Utility for managing data-uris: transforming data to and from, etc."
license = "GPL-3.0-only" license = "GPL-3.0-only"
@@ -11,14 +11,11 @@ bin = @["data_uri"]
# Dependencies # Dependencies
requires @[ requires "nim >= 1.4.4"
"nim >= 1.4.4", requires "docopt >= 0.6.8"
"docopt >= 0.6.8", requires "filetype"
"filetype", requires "zero_functional"
"zero_functional", requires "update_nim_package_version >= 0.2.0"
"https://git.jdb-software.com/jdb/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 data_uri 'src/data_uripkg/version.nim'" exec "update_nim_package_version data_uri 'src/data_uripkg/version.nim'"
+1 -1
View File
@@ -1 +1 @@
const DATA_URI_VERSION* = "1.0.2" const DATA_URI_VERSION* = "1.0.3"