From d4e810cf000463653cb9bb15eb74213ebf4bd791 Mon Sep 17 00:00:00 2001 From: "Ronald E. Robertson" Date: Mon, 11 Nov 2024 15:49:35 -0800 Subject: [PATCH] Merge dev: v0.4.3 (#63) * add: default log level * update: requirements * version: 0.4.2.dev0 * update: switch to bs4 string arg, text arg deprecated * add: poetry setup * update: demo search script via poetry cli * update: explain demo script with example, add to recent changes * update: rename test script * update: cleanup gitignore * add: switch to poetry for pypi release via gh action * fix: matching license in pyproject * remove: pre-poetry setup files * Bump to version 0.4.2 * update: use closed type only * version: 0.4.3 --- .github/workflows/publish.yml | 3 ++- WebSearcher/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 462dc53..e52c356 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -4,7 +4,8 @@ on: pull_request: branches: - master - types: [closed, synchronize] + types: + - closed permissions: contents: read diff --git a/WebSearcher/__init__.py b/WebSearcher/__init__.py index a402871..a53c348 100644 --- a/WebSearcher/__init__.py +++ b/WebSearcher/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.4.2" +__version__ = "0.4.3" from .searchers import SearchEngine from .parsers import parse_serp from .extractors import Extractor diff --git a/pyproject.toml b/pyproject.toml index abf5894..2b3247c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "WebSearcher" -version = "0.4.2" +version = "0.4.3" description = "Tools for conducting, collecting, and parsing web search" authors = ["Ronald E. Robertson "] packages = [{include = "WebSearcher"}]