Skip to content

Releases: skordal/ada-regex

Seventh Release

04 Apr 06:36
Compare
Choose a tag to compare
Seventh Release Pre-release
Pre-release
  • Added support for the $ operator
  • Added utility function to escape regex operators in strings

Sixth Release v0.6

13 Jan 19:35
Compare
Choose a tag to compare
Sixth Release v0.6 Pre-release
Pre-release
  • Support using \t to match tab characters

Fifth Release v0.5

01 May 18:34
Compare
Choose a tag to compare
Fifth Release v0.5 Pre-release
Pre-release
  • Improved performance

Fourth Release

01 Sep 03:36
Compare
Choose a tag to compare
Fourth Release Pre-release
Pre-release
  • Adds support for matching newlines in regexes
  • Adds an ID to acceptance nodes
  • Adds possibility for compiling syntax trees into regex objects directly

Version 0.3

18 May 17:51
Compare
Choose a tag to compare
Version 0.3 Pre-release
Pre-release

Third Release

  • Now a shared library is created when building instead of a static library.
  • Fixed a segmentation fault when running unit tests.
  • Changed the version number in the project file.

Second release

18 Apr 17:33
Compare
Choose a tag to compare
Second release Pre-release
Pre-release

Supports the most important regular expression features.

  • Supported operators: *, +, ?
  • Support for matching character ranges
  • Separate packages for working with syntax trees and state machines generated by the regular expression parser

First release

30 Mar 21:55
Compare
Choose a tag to compare
First release Pre-release
Pre-release

Features:

  • Allows checking if a string matches a pattern.
  • Contains functionality to print the generated syntax tree and state machine for a regular expression, which gives fascinating insight into how regular expressions work