1 /++
2  + Copyright: Copyright © 2018, Christian Köstlin
3  + License: MIT
4  + Authors: Christian Koestlin
5  +/
6 
7 module packageversion.packageversion;
8 import packageversion;
9 
10 const VERSION = "0.0.17";
11 const LICENSE = "MIT";
12 const NAME = "packageversion";
13 static this()
14 {
15     registerPackageVersion(NAME, VERSION, LICENSE);
16 }