diff --git a/README.md b/README.md index 6f3078a..1b72a79 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,8 @@ In just 5 simple steps, you can start parsing any complicated user input into a |-------------------------------------------------------------|---------|-------------| | String, integer, float, and boolean type arguments | ✅ | [v1.0.0][1] | | Custom exceptions for tracking user errors in input | ✅ | [v1.0.0][1] | -| Custom subcommands | ✅ | [v2.0.0][2] | +| Custom subcommands | ✅ | [v2.0.0][2] | +| Positional arguments | ✅ | [v2.1.0][3] | | Treating quoted strings as single input in `parse_string()` | TO DO | ... | ### Usage @@ -73,6 +74,7 @@ Ferit Yiğit BALABAN, <[fyb@fybx.dev][llmail]> [0]: https://pypi.org/project/crispy-parser/ [1]: https://github.com/fybx/crispy/releases/tag/v1.0.0 [2]: https://github.com/fybx/crispy/releases/tag/v2.0.0 +[3]: https://github.com/fybx/crispy/releases/tag/v2.1.0 [llmail]: mailto:fyb@fybx.dev [llwebsite]: https://fybx.dev [llbento]: https://bento.me/balaban diff --git a/setup.py b/setup.py index 03649aa..8216b66 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='crispy-parser', - version='2.0.2', + version='2.1.0', packages=['crispy'], url='https://github.com/fybx/crispy', license='GNU LGPL-v2.1',