diff --git a/.gitignore b/.gitignore index 5c023de5..59ddc736 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,6 @@ /dist /gramaddict.egg-info /.idea -/test /.vscode */*.yml */*.json @@ -17,7 +16,6 @@ accounts Pipfile Pipfile.lock *.pdf -*.txt *.mp4 *.log* *.ini diff --git a/CHANGELOG.md b/CHANGELOG.md index ae6566b7..35a41fcb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,12 @@ # Changelog +## 3.2.10 (2024-03-09) +### Fix +- account selecting +- function specialization for load and clean txt file +- better logging for the user +### Others +- test for load and clean txt file + ## 3.2.9 (2024-02-10) ### Fix - remove pandas as dependency for telegram reports diff --git a/GramAddict/__init__.py b/GramAddict/__init__.py index 1a81c795..82f18f0d 100644 --- a/GramAddict/__init__.py +++ b/GramAddict/__init__.py @@ -1,7 +1,7 @@ """Human-like Instagram bot powered by UIAutomator2""" -__version__ = "3.2.9" -__tested_ig_version__ = "263.2.0.19.104" +__version__ = "3.2.10" +__tested_ig_version__ = "300.0.0.29.110" from GramAddict.core.bot_flow import start_bot diff --git a/GramAddict/version.py b/GramAddict/version.py index 46f53016..9f2df45c 100644 --- a/GramAddict/version.py +++ b/GramAddict/version.py @@ -1,2 +1,2 @@ # that file is deprecated, current version is now stored in GramAddict/__init__.py -__version__ = "3.2.9" +__version__ = "3.2.10"