diff --git a/ChangeLog b/ChangeLog index d0fcd2b6..89fdab2c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,4 @@ -v0.2 Thu Sep 11 10:28:32 CDT 2014 rurban +v0.2 Thu Sep 11 10:28:32 CDT 2014 rurban v0.2-0-ga280506-1153 * print and say methods return "" instead of nil. * Added methods for table: clone, slice, keys, values. @@ -11,11 +11,12 @@ v0.2 Thu Sep 11 10:28:32 CDT 2014 rurban omit access to local filesystem, processes, loading shared libraries -L, and external compilers. bin/potion-s includes all modules statically. See INSTALL.md - * Added rudimentary src debugger with -d - * parse extern functions, but args are not yet translated + * Added rudimentary src debugger with -d (unfinished, c-version only) + * parse extern functions, but args are not yet translated (unfinished) + * Added typed function calls with compile-time binding (experimental) * Fixed GC stability issues -v0.1 Wed Oct 16 13:08:38 2013 rurban +v0.1 Wed Oct 16 13:08:38 2013 rurban v0.1-0-gead95d2-1061 * Asynchronous non-blocking IO in the aio module via libuv. So like node, but potion is a bit faster then node. @@ -36,7 +37,7 @@ v0.1 Wed Oct 16 13:08:38 2013 rurban * Various minor fixes and new methods (sort, cmp, remove, delete, nreverse, say, ...) -vFogus Thu Oct 25 14:01:58 2012 fogus +vFogus Thu Oct 25 14:01:58 2012 fogus vFogus-0-gab7c223-1046 * Fixed Object() constructor (adrian.bloomer) * Added class method (adrian.bloomer) diff --git a/tools/config.sh b/tools/config.sh index 3d58b44c..9977825c 100755 --- a/tools/config.sh +++ b/tools/config.sh @@ -102,7 +102,7 @@ elif [ "$2" = "bsd" ]; then if [ "$BSD" = "" ]; then echo "0" else echo "1"; fi elif [ "$2" = "version" ]; then - sed "/POTION_VERSION/!d; s/\\\"$//; s/.*\\\"//" < core/potion.h + sed "/POTION_VERSION/!d; s/\\\"$//; s/.*\\\"//" < core/version.h elif [ "$2" = "target" ]; then if [ "$CC" = "gcc -m32" ]; then echo "$TARGET" | sed -e "s,x86_64,i686,; s,-unknown,,"