From c9be120d5b2f38834e1fc9a6c14026dde8137cdd Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Thu, 3 Mar 2016 00:51:01 -0800 Subject: [PATCH] v0.8.0 --- dub.json | 6 +++--- src/common/dcd_version.d | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dub.json b/dub.json index dccc483..d5f9530 100644 --- a/dub.json +++ b/dub.json @@ -1,14 +1,14 @@ { "name": "dcd", "description": "The D Completion Daemon is an auto-complete program for the D programming language", - "copyright": "Copyright © 2015, Brian Schott", + "copyright": "Copyright © 2015-2016, Brian Schott", "authors": [ "Brian Schott" ], "license": "GPL-3.0", "dependencies": { - "dsymbol": "~>0.1.1", - "libdparse": "~>0.5.0", + "dsymbol": "~>0.1.2", + "libdparse": "~>0.6.0", "msgpack-d": "~>1.0.0-beta.2" }, "versions": ["built_with_dub"], diff --git a/src/common/dcd_version.d b/src/common/dcd_version.d index ac7c229..2d3b77c 100644 --- a/src/common/dcd_version.d +++ b/src/common/dcd_version.d @@ -21,7 +21,7 @@ module common.dcd_version; /** * Human-readable version number */ -enum DCD_VERSION = "v0.8.0-beta2"; +enum DCD_VERSION = "v0.8.0"; version (Windows) {} else version (built_with_dub) {}