Update Build file for upcoming Builder release
package "mspstrings"
{
- version "1.0";
+ version "1.1";
description "String utilities library";
- tar_file "License.txt";
- tar_file "source/jisx0208.table";
-
require "mspcore";
+ headers "msp/strings"
+ {
+ source "source";
+ install true;
+ };
+
library "mspstrings"
{
source "source";
install true;
- install_headers "msp/strings";
};
program "grep"
library "mspstrings";
};
};
+
+ tarball "@src"
+ {
+ source "License.txt";
+ source "source/jisx0208.table";
+ };
};
--- /dev/null
+1.1
+* Codec autodetection
+* lexical_cast rewritten from scratch
+* Some new utility functions
+* Bugfixes
+ - 64-bit compatibility
+ - Don't generate invalid octal escape sequences
+ - UTF-8 decoder now passes the UTF-8 test file
+ - Regex fixes
+
+1.0
+* First released version
+
+($Id$)