Releases: hedhyw/rex
Releases · hedhyw/rex
v1.0.0
What's Changed
- chore(gha): bump actions/setup-go from 3 to 4 by @dependabot in #62
- chore(gha): bump actions/checkout from 3 to 4 by @dependabot in #64
- ci: update go version to 1.21.3 by @hedhyw in #65
- chore(gha): bump actions/setup-go from 4 to 5 by @dependabot in #66
- chore: go 1.21.6 by @hedhyw in #67
- chore: upgrade go to 1.23.2 by @hedhyw in #68
- docs: udpate documentation for the v1.0.0 release by @hedhyw in #69
Full Changelog: v0.5.0...v1.0.0
v0.6.0
What's Changed
- copy paste error in test name by @gaissmai in #50
- document edge markers by @ryzheboka in #52
- ci: add dependabot config [#53] by @hedhyw in #54
- gha: bump actions/checkout from 2 to 3 by @dependabot in #56
- gha: bump actions/setup-go from 2 to 3 by @dependabot in #55
- feat: add basic generation of rex code by @ryzheboka in #57
- feat: use regexpr parser [#58] by @hedhyw in #59
- ci: add semanntic title workflow by @hedhyw in #61
- feat: support additional repetition options by @ryzheboka in #60
New Contributors
- @gaissmai made their first contribution in #50
- @dependabot made their first contribution in #56
Full Changelog: v0.4.1...v0.6.0
v0.5.0
What's Changed
- copy paste error in test name by @gaissmai in #50
- document edge markers by @ryzheboka in #52
- ci: add dependabot config [#53] by @hedhyw in #54
- gha: bump actions/checkout from 2 to 3 by @dependabot in #56
- gha: bump actions/setup-go from 2 to 3 by @dependabot in #55
- feat: add basic generation of rex code by @ryzheboka in #57
- feat: use regexpr parser [#58] by @hedhyw in #59
- ci: add semanntic title workflow by @hedhyw in #61
- feat: support additional repetition options by @ryzheboka in #60
New Contributors
- @gaissmai made their first contribution in #50
- @dependabot made their first contribution in #56
Full Changelog: v0.4.1...v0.5.0
v0.4.1
v0.4.0
Support edge markers:
symbol | description | Suggestion |
---|---|---|
\A | at beginning of text | Chars.BeginOfText() |
\b | at ASCII word boundary (\w on one side and \W, \A, or \z on the other) | Chars.ASCIIWordBoundary() |
\B | not at ASCII word boundary | Chars.NotASCIIWordBoundary() |
\z | at end of text | Chars.EndOfText() |