From: Mikko Rasa Date: Mon, 21 Sep 2009 18:57:29 +0000 (+0000) Subject: Bump version to 1.0 X-Git-Tag: 1.0~1 X-Git-Url: http://git.tdb.fi/?p=builder.git;a=commitdiff_plain;h=a32de1c2e19b886050d73eb557bc8d0f4b892cff Bump version to 1.0 Output version with help message --- diff --git a/Build b/Build index e057825..c2548aa 100644 --- a/Build +++ b/Build @@ -2,7 +2,7 @@ package "builder" { - version "0.9"; + version "1.0"; description "Mikkosoft Productions software builder"; require "mspcore"; diff --git a/Changelog.txt b/Changelog.txt new file mode 100644 index 0000000..64fd4fb --- /dev/null +++ b/Changelog.txt @@ -0,0 +1,14 @@ +1.0 +* Tarball component allows custom tarballs (tar_file statement is deprecated) +* Unified header installation (install_headers statement is deprecated) +* Datafile component +* Install component allows installing any files +* Improvements all around +* Use new facilities from underlying libraries +* Internal refactoring +* Various bugfixes + +0.9 +* First released version + +($Id$) diff --git a/Readme.txt b/Readme.txt index aa937d1..a25505b 100644 --- a/Readme.txt +++ b/Readme.txt @@ -1,4 +1,6 @@ -Builder 0.9 Readme +Builder +Copyright © 2006-2009 Mikkosoft Productions +Version 1.0 readme 1. Description diff --git a/source/builder.cpp b/source/builder.cpp index 3a9f3d4..ce82ba3 100644 --- a/source/builder.cpp +++ b/source/builder.cpp @@ -503,6 +503,7 @@ void Builder::usage(const char *reason, const char *argv0, bool brief) IO::print(IO::cerr, "Usage: %s\n", usagemsg); else { + IO::print(IO::cerr, "Builder 1.0\n\n"); IO::print(IO::cerr, "Usage: %s [options] [ ...]\n\n", argv0); IO::print(IO::cerr, "Options:\n"); IO::print(IO::cerr, helpmsg);