+## 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.
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.
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'.