From f9a6a908331cdb6c3b5c028ae2e35e30f7dfcacb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9E=97=E7=8E=AE?= Date: Tue, 15 Oct 2019 20:33:19 +0800 Subject: [PATCH] Bump to v0.5.0.dev1 --- HISTORY.md | 6 ++++++ README.md | 6 ++---- pyproject.toml | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 8dec457..44a77e3 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,11 @@ # History +## v0.4.1 + +- d180992 Add pre-commit support and fix pre-commit check error (#32) +- bd680c1 Update pyproject.toml +- 64f30f7 remove unhappened condtional + ## v0.4.0 - 74f569b Update docs and lint docs (#31) diff --git a/README.md b/README.md index b576224..e4e57f3 100644 --- a/README.md +++ b/README.md @@ -15,8 +15,6 @@ Combine **XPath**, **CSS Selectors** and **JSONPath** for Web data extracting. ## Changelog -### v0.4.1 +### v0.5.0 -- d180992 Add pre-commit support and fix pre-commit check error (#32) -- bd680c1 Update pyproject.toml -- 64f30f7 remove unhappened condtional +- 0056f37 Split AbstractExtractor into AbstractSimpleExtractor and AbstractComplexExtractor diff --git a/pyproject.toml b/pyproject.toml index 5d7667c..6b826fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "data_extractor" -version = "0.4.1" +version = "0.5.0.dev1" license = "MIT" description = "Combine XPath, CSS Selectors and JSONPath for Web data extracting." authors = ["linw1995 "]