From 70defe678b73f0cbc5b3fb3336d69698a51aa1ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=97=E7=8E=AE?= Date: Sun, 29 Dec 2019 16:50:55 +0800 Subject: [PATCH] New:Bump to v0.1.1 - 35f0960 New:Add release actions for pypi and gh-release - ce022b6 New:Add codecov for code coverage report - 7f4fe3c Fix:The reduce/reduce conflicts - 258b0fa Fix:The shift/reduce conflicts - 95f088d New:Add Github Actions for CI --- README.rst | 40 ++++++++++++++++++++++++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 41 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 29bfe0e..5fd1fec 100644 --- a/README.rst +++ b/README.rst @@ -2,6 +2,9 @@ JSONPATH ======== +|license| |Pypi Status| |Python version| |Package version| |PyPI - Downloads| +|GitHub last commit| |Code style: black| |Build Status| |codecov| + A selector expression for extracting data from JSON. Quickstarts @@ -55,3 +58,40 @@ Usage .find(data) == expect ) + +Changelog +~~~~~~~~~ + +- 35f0960 New:Add release actions for pypi and gh-release +- ce022b6 New:Add codecov for code coverage report +- 7f4fe3c Fix:The reduce/reduce conflicts +- 258b0fa Fix:The shift/reduce conflicts +- 95f088d New:Add Github Actions for CI + + +.. |license| image:: https://img.shields.io/github/license/linw1995/jsonpath.svg + :target: https://github.com/linw1995/jsonpath/blob/master/LICENSE + +.. |Pypi Status| image:: https://img.shields.io/pypi/status/jsonpath-extractor.svg + :target: https://pypi.org/project/jsonpath-extractor + +.. |Python version| image:: https://img.shields.io/pypi/pyversions/jsonpath-extractor.svg + :target: https://pypi.org/project/jsonpath-extractor + +.. |Package version| image:: https://img.shields.io/pypi/v/jsonpath-extractor.svg + :target: https://pypi.org/project/jsonpath-extractor + +.. |PyPI - Downloads| image:: https://img.shields.io/pypi/dm/jsonpath-extractor.svg + :target: https://pypi.org/project/jsonpath-extractor + +.. |GitHub last commit| image:: https://img.shields.io/github/last-commit/linw1995/jsonpath.svg + :target: https://github.com/linw1995/jsonpath + +.. |Code style: black| image:: https://img.shields.io/badge/code%20style-black-000000.svg + :target: https://github.com/ambv/black + +.. |Build Status| image:: https://img.shields.io/github/workflow/status/linw1995/jsonpath/Python%20package + :target: https://github.com/linw1995/jsonpath/actions?query=workflow%3A%22Python+package%22 + +.. |codecov| image:: https://codecov.io/gh/linw1995/jsonpath/branch/master/graph/badge.svg + :target: https://codecov.io/gh/linw1995/jsonpath diff --git a/pyproject.toml b/pyproject.toml index ea0f688..0d72623 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "jsonpath-extractor" -version = "0.1.0" +version = "0.1.1" license = "MIT" description = "A selector expression for extracting data from JSON." authors = ["林玮 "]