Skip to content

Commit 415430b

Browse files
author
Reini Urban
committed
v0.2 ChangeLog
also fix tools/config.sh cc version (from version.h) for the VERSION with make dist
1 parent 2371163 commit 415430b

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

ChangeLog

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
v0.2 Thu Sep 11 10:28:32 CDT 2014 rurban
1+
v0.2 Thu Sep 11 10:28:32 CDT 2014 rurban v0.2-0-ga280506-1153
22

33
* print and say methods return "" instead of nil.
44
* Added methods for table: clone, slice, keys, values.
@@ -11,11 +11,12 @@ v0.2 Thu Sep 11 10:28:32 CDT 2014 rurban
1111
omit access to local filesystem, processes, loading shared libraries
1212
-L, and external compilers. bin/potion-s includes all modules statically.
1313
See INSTALL.md
14-
* Added rudimentary src debugger with -d
15-
* parse extern functions, but args are not yet translated
14+
* Added rudimentary src debugger with -d (unfinished, c-version only)
15+
* parse extern functions, but args are not yet translated (unfinished)
16+
* Added typed function calls with compile-time binding (experimental)
1617
* Fixed GC stability issues
1718

18-
v0.1 Wed Oct 16 13:08:38 2013 rurban
19+
v0.1 Wed Oct 16 13:08:38 2013 rurban v0.1-0-gead95d2-1061
1920

2021
* Asynchronous non-blocking IO in the aio module via libuv. So like
2122
node, but potion is a bit faster then node.
@@ -36,7 +37,7 @@ v0.1 Wed Oct 16 13:08:38 2013 rurban
3637
* Various minor fixes and new methods (sort, cmp, remove, delete,
3738
nreverse, say, ...)
3839

39-
vFogus Thu Oct 25 14:01:58 2012 fogus
40+
vFogus Thu Oct 25 14:01:58 2012 fogus vFogus-0-gab7c223-1046
4041

4142
* Fixed Object() constructor (adrian.bloomer)
4243
* Added class method (adrian.bloomer)

tools/config.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ elif [ "$2" = "bsd" ]; then
102102
if [ "$BSD" = "" ]; then echo "0"
103103
else echo "1"; fi
104104
elif [ "$2" = "version" ]; then
105-
sed "/POTION_VERSION/!d; s/\\\"$//; s/.*\\\"//" < core/potion.h
105+
sed "/POTION_VERSION/!d; s/\\\"$//; s/.*\\\"//" < core/version.h
106106
elif [ "$2" = "target" ]; then
107107
if [ "$CC" = "gcc -m32" ]; then
108108
echo "$TARGET" | sed -e "s,x86_64,i686,; s,-unknown,,"

0 commit comments

Comments
 (0)