jmespath / jmespath.py

JMESPath is a query language for JSON.
http://jmespath.org
MIT License
2.19k stars 181 forks source link

i've added a bump config file to automate the bumping version across … #220

Closed wiseaidev closed 3 years ago

wiseaidev commented 3 years ago

…the library

For the maintainers on how to deploy: if you don't have it yet:

$ pip install --user bump2version
$ bump2version patch # or minor or major

ex: version = '0.10.0' --> 'major.minor.patch' '$ bump2version patch' --> 0.10.1 '$ bump2version minor' --> 0.11.0 etc once bump it, push the tags as usual:

$ git push
$ git push --tags

Signed-off-by: Harmouch101 mahmoudddharmouchhh@gmail.com