From ecf476a341e33af52ff65cfa06bc2164502c3d05 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Thu, 14 Jan 2016 00:25:19 -0800 Subject: [PATCH] Dub updates --- .gitignore | 4 ++++ dub.json | 5 +++-- src/dscanner_version.d | 3 ++- src/main.d | 2 ++ 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 15b3611..0f704a4 100755 --- a/.gitignore +++ b/.gitignore @@ -35,3 +35,7 @@ githash.txt # GDB history .gdb_history + +# Dub stuff +.dub +dub.selections.json diff --git a/dub.json b/dub.json index 69b38c5..6db7ca4 100644 --- a/dub.json +++ b/dub.json @@ -6,9 +6,10 @@ "license" : "Boost Software License - Version 1.0", "targetType": "executable", "preBuildCommands": ["git log -1 --format='%H' > githash.txt"], - "stringImportPaths": ["."], + "versions": ["built_with_dub"], "dependencies": { - "libdparse": "0.2.1", + "libdparse": "~>0.3.0", + "dsymbol": "~>0.1.0", "inifiled": ">=0.0.3", }, } diff --git a/src/dscanner_version.d b/src/dscanner_version.d index e218dfc..412940a 100644 --- a/src/dscanner_version.d +++ b/src/dscanner_version.d @@ -8,9 +8,10 @@ module dscanner_version; /** * Human-readable version number */ -enum DSCANNER_VERSION = "v0.2.0-beta1"; +enum DSCANNER_VERSION = "v0.3.0-alpha"; version (Windows) {} +else version (built_with_dub) {} else { /** diff --git a/src/main.d b/src/main.d index 94fba44..1ab5144 100644 --- a/src/main.d +++ b/src/main.d @@ -110,6 +110,8 @@ int main(string[] args) { version (Windows) writeln(DSCANNER_VERSION); + else version(built_with_dub) + writeln(DSCANNER_VERSION); else write(DSCANNER_VERSION, " ", GIT_HASH); return 0;