-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
46 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
The speed release. | ||
|
||
* Doubles parsing speed for both Markdown and reStructuredText | ||
* Much lower number of parser instance creations on repeated runs | ||
* Performance goals had been achieved through replacing the former | ||
Scala SDK parser combinators with a custom, optimized combinator design: | ||
* Fewer dependent types and base parsers in objects instead of traits, making it easier to freely compose parsers | ||
* Create parser error messages lazily, as most of them will never be accessed | ||
* Avoid cost of by-name args in all cases except | combinator | ||
* Other changes in this release: | ||
* Add support for size and align options for the image directive in reStructuredText | ||
* Fixes for all bugs known and reported to this point | ||
* Remove all deprecation warnings for Scala 2.12 | ||
|
||
|
||
|
||
|
||
|
||
|
||
|