Releases: netguru/SimpleRegEx
Releases · netguru/SimpleRegEx
v0.1.10
What's Changed
- Introduce separate workflows for pypi publish by @Solarden in #42
- [BN-4534] fix tests; adjust docstrings by @kacperstasica in #43
- Enhance documentation; bugfixes by @kacperstasica in #44
- Update documentation about releasing new version by @Solarden in #45
New Contributors
- @kacperstasica made their first contribution in #43
Full Changelog: v0.1.9...v0.1.10
v0.1.9
First release 🎉
- One can compile or return regex pattern
- Updated docs
New functionalities:
- none_or_many(what: RegEx) -> RegEx
- one_or_more(what: RegEx) -> RegEx
- none_or_one(what: RegEx) -> RegEx
- any_of_char(items: str) -> RegEx
- regex_range(min: str, max: str) -> RegEx
- group(what: RegEx, name=None, non_capturing=False) -> RegEx
- look_ahead(what: RegEx, negative=False) -> RegEx
- look_behind(what: RegEx, negative=False) -> RegEx
- any_of_characters(regex_list: List[str]) -> RegEx
- times(what: RegEx, min: int, max: int = None) -> RegEx
- repeat(what: RegEx, count: int) -> RegEx
- negate(what: RegEx) -> RegEx
You can find more information in documentation.