diff --git a/README.rst b/README.rst index 080133d..a62fc07 100644 --- a/README.rst +++ b/README.rst @@ -96,14 +96,19 @@ The output of the above commands. Changelog <<<<<<<<< -v0.7.2 +v0.7.3 ~~~~~~ -- 5741909 New:Add a new context variable "parent" -- dde3703 New:Add a helper function 'temporary_set' -- 3336e86 New:Be able to get parent node while searching -- 901354f Fix:Slice nested exprs find erorr -- c0e82d6 Fix:Slice.find apply on list only +- a4e3dee Chg:Refactoring +- f46e87e Fix:Exports requirements.txt error +- c085900 New:Supports Python3.9 +- 3f8b882 Fix:mypy error when using Python39 +- 3b1a40a Fix:Missing Python3.9 +- 53905c2 Chg:Update Brace class doc. +- ad76217 Chg:Update Brace class doc. +- c4d9538 Fix:Build document first while running 'make live_docs' +- b12491e Fix,Dev:Must deactivate before using nox +- 82ada7a Fix:build.py file contamination (fixes #26) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 13a08fe..00a02b9 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -2,14 +2,19 @@ Changelog ========= -v0.7.2 +v0.7.3 ~~~~~~ -- 5741909 New:Add a new context variable "parent" -- dde3703 New:Add a helper function 'temporary_set' -- 3336e86 New:Be able to get parent node while searching -- 901354f Fix:Slice nested exprs find erorr -- c0e82d6 Fix:Slice.find apply on list only +- a4e3dee Chg:Refactoring +- f46e87e Fix:Exports requirements.txt error +- c085900 New:Supports Python3.9 +- 3f8b882 Fix:mypy error when using Python39 +- 3b1a40a Fix:Missing Python3.9 +- 53905c2 Chg:Update Brace class doc. +- ad76217 Chg:Update Brace class doc. +- c4d9538 Fix:Build document first while running 'make live_docs' +- b12491e Fix,Dev:Must deactivate before using nox +- 82ada7a Fix:build.py file contamination (fixes #26) .. include:: history.rst diff --git a/docs/source/history.rst b/docs/source/history.rst index f954498..7827f7e 100644 --- a/docs/source/history.rst +++ b/docs/source/history.rst @@ -2,6 +2,15 @@ History ======= +v0.7.2 +~~~~~~ + +- 5741909 New:Add a new context variable "parent" +- dde3703 New:Add a helper function 'temporary_set' +- 3336e86 New:Be able to get parent node while searching +- 901354f Fix:Slice nested exprs find erorr +- c0e82d6 Fix:Slice.find apply on list only + v0.7.1 ~~~~~~ diff --git a/pyproject.toml b/pyproject.toml index 81a5d58..a20be78 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "jsonpath-extractor" -version = "0.7.2" +version = "0.7.3" license = "MIT" description = "A selector expression for extracting data from JSON." authors = ["林玮 "]