From ac17371c10dac82a38d25a4ceec8a22c98000dc3 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Thu, 17 Sep 2015 03:11:57 -0700 Subject: [PATCH] 0.4.0 --- dub.json | 2 +- src/dfmt/main.d | 14 +++++++++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/dub.json b/dub.json index 64a709c..8c924f4 100644 --- a/dub.json +++ b/dub.json @@ -1,7 +1,7 @@ { "name": "dfmt", "description": "Dfmt is a formatter for D source code", - "version": "0.4.0-beta", + "version": "0.4.0", "targetType": "executable", "license": "BSL-1.0", "dependencies": { diff --git a/src/dfmt/main.d b/src/dfmt/main.d index 923f99c..362a548 100644 --- a/src/dfmt/main.d +++ b/src/dfmt/main.d @@ -5,6 +5,8 @@ module dfmt.main; +enum VERSION = "0.4.0"; + version (NoMain) { } @@ -24,6 +26,7 @@ else Config optConfig; optConfig.pattern = "*.d"; bool showHelp; + bool showVersion; void handleBooleans(string option, string value) { @@ -58,6 +61,7 @@ else try { getopt(args, + "version", &showVersion, "align_switch_statements", &handleBooleans, "brace_style", &optConfig.dfmt_brace_style, "end_of_line", &optConfig.end_of_line, @@ -80,6 +84,12 @@ else return 1; } + if (showVersion) + { + writeln(VERSION); + return 0; + } + if (showHelp) { printHelp(); @@ -149,11 +159,13 @@ else private void printHelp() { - writeln(`dfmt 0.4.0-beta + writeln(`dfmt `, VERSION, ` +https://github.com/Hackerpilot/dfmt Options: --help | -h Print this help message --inplace Edit files in place + --version Print the version number and then exit Formatting Options: --align_switch_statements