Skip to content

Commit

Permalink
Merge dev: v0.4.3 (#63)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
gitronald authored Nov 11, 2024
1 parent 49c9d62 commit d4e810c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ on:
pull_request:
branches:
- master
types: [closed, synchronize]
types:
- closed

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion WebSearcher/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
packages = [{include = "WebSearcher"}]
Expand Down

0 comments on commit d4e810c

Please sign in to comment.