From 1a179d66b0dada414bda0d1279e3e55a17d20dd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=97=E7=8E=AE=20=28Jade=20Lin=29?= Date: Wed, 21 Oct 2020 22:47:16 +0800 Subject: [PATCH] New:Bump to v0.7.3 - 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) --- README.rst | 17 +++++++++++------ docs/source/changelog.rst | 17 +++++++++++------ docs/source/history.rst | 9 +++++++++ pyproject.toml | 2 +- 4 files changed, 32 insertions(+), 13 deletions(-) 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 = ["林玮 "]