Skip to content

Releases: TheOnlyTails/ketex

Ketex v1.1.1

16 Jan 20:41
Compare
Choose a tag to compare

This release makes all tokens lazy-loaded by default, and updates Kotlin to version 1.8.0.

Full Changelog: v1.1.0...v1.1.1

Ketex v1.1.0

03 Aug 12:01
Compare
Choose a tag to compare

This release includes a new token: named, used for backreferencing named capture groups.

Full Changelog: v1.0.0...v1.1.0

Ketex v1.0.0

28 Jun 15:41
Compare
Choose a tag to compare

Ketex is now stable! No more breaking changes will be made until 2.0.

  • Implemented property for matching characters based on unicode properties and categories.
  • Removed name since Java's regex implementation doesn't support named capture groups

Full Changelog: v0.1.6...v1.0.0

Ketex v0.1.6

09 May 15:54
6ccaea0
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.1.5...v0.1.6

Ketex v0.1.5

07 May 14:32
Compare
Choose a tag to compare

What's Changed

  • Added a way of creating sets using the get operator by @TheOnlyTails in #5

Full Changelog: v0.1.4...v0.1.5

Ketex v0.1.4

06 May 22:15
Compare
Choose a tag to compare

What's Changed

  • Added new name tokens for referencing named groups by @TheOnlyTails in #3

Full Changelog: v0.1.3...v0.1.4

Ketex v0.1.3

20 Apr 07:52
Compare
Choose a tag to compare

This release features 3 new tokens: newline (\n), carriageReturn (\r), and tab (\t).

Ketex v0.1.2

19 Apr 13:21
Compare
Choose a tag to compare

This release features token inversion with the ! operator (e.g. +!word)

Ketex v0.1.1

18 Apr 17:41
Compare
Choose a tag to compare

This releases features a new way to negate sets with the ! (not) operator.

Ketex v0.1.0

15 Apr 20:57
ebf7153
Compare
Choose a tag to compare

This is the first release of Ketex 🎉

It includes:

  • character groups (classes)
  • character sets
  • quantifiers
  • common tokens (\w, \d, \s, etc;)