Releases: TheOnlyTails/ketex
Releases · TheOnlyTails/ketex
Ketex v1.1.1
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
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
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
What's Changed
- Added a vararg variant of the
group
function by @TheOnlyTails in #7
Full Changelog: v0.1.5...v0.1.6
Ketex v0.1.5
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
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
This release features 3 new tokens: newline
(\n
), carriageReturn
(\r
), and tab
(\t
).
Ketex v0.1.2
This release features token inversion with the !
operator (e.g. +!word
)
Ketex v0.1.1
This releases features a new way to negate sets with the !
(not) operator.
Ketex v0.1.0
This is the first release of Ketex 🎉
It includes:
- character groups (classes)
- character sets
- quantifiers
- common tokens (
\w
,\d
,\s
, etc;)