From 47845a537b2273352ebce1ba269ed5d08be5b3b4 Mon Sep 17 00:00:00 2001 From: Igor Dejanovic Date: Sun, 1 Nov 2020 16:35:36 +0100 Subject: [PATCH] Release 1.10.0 --- CHANGELOG.md | 9 +++++++-- arpeggio/__init__.py | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c18c7e..5acb619 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,9 +12,14 @@ Backward incompatible changes are marked with **(BIC)**. These changes are the reason for the major version increase so when upgrading between major versions please take a look at related PRs and issues and see if the change affects you. - ## [Unreleased] + +[Unreleased]: https://github.com/textX/Arpeggio/compare/1.10.0...HEAD + + +## [1.10.0] (released: 2020-11-01) + - Fix reporting duplicate rule names in `NoMatch` exception ([a1f14bede]) - Raise `AttributeError` when accessing unexisting rule name on parse tree node. ([#82]) @@ -29,7 +34,7 @@ please take a look at related PRs and issues and see if the change affects you. [#82]: https://github.com/textX/Arpeggio/issues/82 [#76]: https://github.com/textX/Arpeggio/issues/76 [#73]: https://github.com/textX/Arpeggio/issues/73 -[Unreleased]: https://github.com/textX/Arpeggio/compare/v1.9.2...HEAD +[Unreleased]: https://github.com/textX/Arpeggio/compare/v1.9.2...1.10.0 ## [v1.9.2] (released: 2019-10-05) diff --git a/arpeggio/__init__.py b/arpeggio/__init__.py index eaf6f10..7dc50b8 100644 --- a/arpeggio/__init__.py +++ b/arpeggio/__init__.py @@ -20,7 +20,7 @@ from arpeggio.utils import isstr import types -__version__ = "1.9.2" +__version__ = "1.10.0" if sys.version < '3': text = unicode