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) {}