]> git.tdb.fi Git - libs/core.git/commitdiff
Bump version to 1.1 strings-1.1
authorMikko Rasa <tdb@tdb.fi>
Mon, 21 Sep 2009 16:47:08 +0000 (16:47 +0000)
committerMikko Rasa <tdb@tdb.fi>
Mon, 21 Sep 2009 16:47:08 +0000 (16:47 +0000)
Update Build file for upcoming Builder release

Build
Changelog.txt [new file with mode: 0644]

diff --git a/Build b/Build
index d7b5541476bd817544e650a56b8779111c7b4271..eb16f4b8e9cef640c62008d8749ed8dc8406c0fd 100644 (file)
--- a/Build
+++ b/Build
@@ -2,19 +2,21 @@
 
 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"
@@ -34,4 +36,10 @@ package "mspstrings"
                        library "mspstrings";
                };
        };
+
+       tarball "@src"
+       {
+               source "License.txt";
+               source "source/jisx0208.table";
+       };
 };
diff --git a/Changelog.txt b/Changelog.txt
new file mode 100644 (file)
index 0000000..9af98cd
--- /dev/null
@@ -0,0 +1,14 @@
+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$)