diff --git a/CHANGELOG.md b/CHANGELOG.md index 9af1cdc..e540f55 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## v1.0.4 +- Modified if modules are not install, pass +- Moved `my_image/my_crawling.py` +- Added `__init__.py` +- Added `pyproject.toml` and `CHANGELOG/README.md` +- Modified `.gitignore` + ## v1.0.3 - Added `my_crawling.py` - Deleted `__pycache__` diff --git a/Custom_Lib.py b/Custom_Lib.py index 2f14f7b..125f658 100644 --- a/Custom_Lib.py +++ b/Custom_Lib.py @@ -1,4 +1,4 @@ -__version__ = "1.0.3" +__version__ = "1.0.4" # --- required modules --- from custom_lib import my_file_config diff --git a/README.md b/README.md index 3b1d8d5..b3be0b1 100644 --- a/README.md +++ b/README.md @@ -109,4 +109,4 @@ custom_lib/ ## Version -### v1.0.3 \ No newline at end of file +### v1.0.4 \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index c1f5fb4..77fe012 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "custom_lib" -version = "1.0.3" +version = "1.0.4" description = "My Custom Python Library" requires-python = ">=3.9"