doc: update
authorJulien Moutinho <julm+symantic-parser@sourcephile.fr>
Fri, 3 Sep 2021 12:32:34 +0000 (14:32 +0200)
committerJulien Moutinho <julm+symantic-parser@sourcephile.fr>
Fri, 3 Sep 2021 12:32:34 +0000 (14:32 +0200)
ChangeLog.md
ToDo.md

index a76f1628d2ff0ef2d282e1afc7e24e231f81dae2..e48b16d82746916858fe3114e58d8cc512b2d1ad 100644 (file)
@@ -1,3 +1,16 @@
+## symantic-parser-0.2.1.20210903
+
+* Update documentation.
+
+## symantic-parser-0.2.1.20210803
+
+* Add support for registers.
+  Symantic.Parser is now faster than Attoparsec on the Brainfuck benchmarks.
+* Comply with [REUSE-3.0](https://reuse.software].
+* Fix `checkedHorizon`'s handling by removing `horizonStack`
+  and putting both `input` and `checkedHorizon` on the `valueStack`.
+* Update to [symantic-base 0.2](https://hackage.haskell.org/package/symantic-base).
+
 ## symantic-parser-0.2.0.20210703
 
 * Fix mutual let bindings by defining them all together.
@@ -24,6 +37,8 @@
   instead of only operators having symantics, eg. in `Symantic.Typed.Lang`.
   However `Symantic.Typed.View` is no longer used now,
   and thus `lam1`s no longer singled-out, not a big deal though.
+* Fix `parsingErrorExpecting` showing by using a sort not depending on
+  packages' ABI or whether cabal-install's setup is --inplace or not.
 * Major refactoring.
 * Minor other optimizations and fixes.
 
diff --git a/ToDo.md b/ToDo.md
index 3321d48d1f69cd479b4efa17f13d5931186dbed9..f960973c4da98c6347d0d44564980bf52ce706d6 100644 (file)
--- a/ToDo.md
+++ b/ToDo.md
@@ -8,3 +8,7 @@
       In which case it would be able to replace `attoparsec` in `pipes`.
 
 - [ ] Golden tests using more complex grammars.
+
+- [ ] Some static infos should be attached to 'OnException'
+      to avoid comparing inputs when they're the same
+      and to improve 'checkedHorizon'.