summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@complang.org>2012-12-29 09:59:59 -0500
committerAdrian Thurston <thurston@complang.org>2012-12-29 09:59:59 -0500
commitee2462ff0dbf6c848bac1efdc664063de53b56bf (patch)
tree3adcaa523610bc64b0263452026d5f67ee1b2a62
parent4409dfb95a5f8a47f0d027ebc193c671000f28cc (diff)
downloadcolm-ee2462ff0dbf6c848bac1efdc664063de53b56bf.tar.gz
initial changelog describing 0.8
-rw-r--r--ChangeLog11
1 files changed, 11 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
new file mode 100644
index 00000000..7651bffd
--- /dev/null
+++ b/ChangeLog
@@ -0,0 +1,11 @@
+Colm 0.8 - Dec 29, 2012
+-----------------------
+
+ * The parse statement now includes a call to the finish operation. It returns
+ a value of type parser<Type>. The result tree and any error message can be
+ retrieved from this object using 'tree' and 'error' members.
+ * Dropped curly brackets and the name from the syntax of lexical region
+ defintition. Using "lex ... end"
+ * Dropped curly brackets from the syntax of namespaces and context blocks.
+ Using "namespace N ... end N" and "context N ... end N"
+ * Now have a growable stack instead of a large, fixed, pre-allocated stack.