From: Mikko Rasa Date: Mon, 21 Sep 2009 16:40:37 +0000 (+0000) Subject: Bump version to 1.1 X-Git-Tag: 1.1 X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=commitdiff_plain;h=b38f3713d39bca1adc476c594b037c98e7538e78;hp=1f262a37bf2c0531f7474df3cdb60d608bfdbba1 Bump version to 1.1 Update Build file for upcoming Builder release --- diff --git a/Build b/Build index 253b93b..359f6b1 100644 --- a/Build +++ b/Build @@ -2,11 +2,9 @@ package "mspcore" { - version "1.0"; + version "1.1"; description "Mikkosoft Productions core library"; - tar_file "License.txt"; - require "sigc++-2.0"; if "arch!=win32" { @@ -25,22 +23,22 @@ package "mspcore" feature "exception_backtrace" "Generate a backtrace when an exception is thrown."; - headers "core" + headers "msp/core" { source "source/core"; - install_headers "msp/core"; + install true; }; - headers "time" + headers "msp/time" { source "source/time"; - install_headers "msp/time"; + install true; }; - headers "debug" + headers "msp/debug" { source "source/debug"; - install_headers "msp/debug"; + install true; }; library "mspcore" @@ -50,4 +48,9 @@ package "mspcore" source "source/time"; install true; }; + + tarball "@src" + { + source "License.txt"; + }; }; diff --git a/Changelog.txt b/Changelog.txt new file mode 100644 index 0000000..1e5fe5e --- /dev/null +++ b/Changelog.txt @@ -0,0 +1,13 @@ +1.1 +* Time zone support +* Some more time operations +* Bugfixes + - Compatibility fixes for FreeBSD and 64-bit systems + - Proper handling of string arguments with spaces in GetOpt + - DateTime addition fixes + - Timer no longer drops duplicate timeouts + +1.0 +* First released version + +($Id$)