From b38f3713d39bca1adc476c594b037c98e7538e78 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Mon, 21 Sep 2009 16:40:37 +0000 Subject: [PATCH 1/1] Bump version to 1.1 Update Build file for upcoming Builder release --- Build | 21 ++++++++++++--------- Changelog.txt | 13 +++++++++++++ 2 files changed, 25 insertions(+), 9 deletions(-) create mode 100644 Changelog.txt 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$) -- 2.43.0