From 324fbffe172df06f8d0f92b3dac3fad71e149189 Mon Sep 17 00:00:00 2001 From: IamLizu Date: Sat, 1 Jul 2023 15:29:16 +0600 Subject: [PATCH] release 1.3.9 --- README.md | 6 ++++++ pyproject.toml | 4 ++-- wpdetect/__main__.py | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c306855..26be2a9 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,12 @@ Please note that, it is not always possible to detect the presence of WordPress, ## Changelog +#### What's new in version 1.3.9 + +- Minor bug fixes +- Added workflow for linting on code push +- Added workflow for publishing to PyPi on release + #### What's new in version 1.3.8 - Fixed [#8](https://github.com/IamLizu/wpdetect/issues/8) diff --git a/pyproject.toml b/pyproject.toml index 774dea2..c8ade7c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,12 +4,12 @@ build-backend = "hatchling.build" [project] name = "wpdetect" -version = "1.3.8" +version = "1.3.9" dependencies = [ "pyfiglet", "requests" ] authors = [ - { name="S M Mahmudul Hasan", email="thegeek@iamlizu.com" }, + { name="S M Mahmudul Hasan", email="he@smmahmudulhasan.com" }, ] description = "A WordPress detection tool, detects if a website is running WordPress" readme = "README.md" diff --git a/wpdetect/__main__.py b/wpdetect/__main__.py index a6282c5..ead82ce 100644 --- a/wpdetect/__main__.py +++ b/wpdetect/__main__.py @@ -10,7 +10,7 @@ HEADER = "'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit/537.75.14" + \ " (KHTML, like Gecko) Version/7.0.3 Safari/7046A194A'" -VERSION = "1.3.8" +VERSION = "1.3.9" # Error messages ERROR_UNABLE_TO_OPEN_URL = "Couldn't open url," + \