Skip to content

Commit

Permalink
Fix version number, add more contributors
Browse files Browse the repository at this point in the history
  • Loading branch information
Gama11 committed May 5, 2018
1 parent 18e89b1 commit 214f586
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions haxelib.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"license": "MIT",
"tags": ["documentation"],
"description": "Haxe documentation generator.",
"version": "1.1.0",
"version": "1.2.0",
"releasenote": "Bug fixes and improvements. Binary only distribution.",
"contributors": ["dpeek", "Simn"],
"contributors": ["dpeek", "Simn", "markknol", "Gama11"],
"dependencies": {}
}
Binary file modified run.n
Binary file not shown.
2 changes: 1 addition & 1 deletion src/dox/Dox.hx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class Dox {
]);

function printHelp() {
Sys.println("Dox 1.0");
Sys.println("Dox 1.2.0");
Sys.println(argHandler.getDoc());
Sys.exit(0);
}
Expand Down
2 changes: 1 addition & 1 deletion src/dox/Generator.hx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Generator {
this.api = api;
this.writer = writer;
var config = api.config;
tplNav = config.loadTemplate("nav.mtt") ;
tplNav = config.loadTemplate("nav.mtt");
tplPackage = config.loadTemplate("package.mtt");
tplClass = config.loadTemplate("class.mtt");
tplEnum = config.loadTemplate("enum.mtt");
Expand Down

0 comments on commit 214f586

Please sign in to comment.