Skip to content

Commit

Permalink
v0.2 ChangeLog
Browse files Browse the repository at this point in the history
also fix tools/config.sh cc version (from version.h)
for the VERSION with make dist
  • Loading branch information
Reini Urban committed Sep 11, 2014
1 parent 2371163 commit 415430b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions 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.
Expand All @@ -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.
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion tools/config.sh
Expand Up @@ -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,,"
Expand Down

0 comments on commit 415430b

Please sign in to comment.