diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d8ad09..e088e83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,11 @@ `BrowserType` (e.g. `BrowserType.CHROME`) - Add deprecation warning for passing strings - Added a nix flake to facilitate testing multiple python versions +- Add basic logging +- Add CLI tool +- Add `as_cookies` parameter to allow returning `list[Cookie]` instead of + `dict` (without breaking backward compatibility) +- Loosen dependency constrains, which should make usage as a library easier ## v0.6.0 :: 20230324 diff --git a/src/pycookiecheat/__init__.py b/src/pycookiecheat/__init__.py index 6c02f6d..5725497 100644 --- a/src/pycookiecheat/__init__.py +++ b/src/pycookiecheat/__init__.py @@ -6,7 +6,7 @@ __author__ = "Nathan Henrie" __email__ = "nate@n8henrie.com" -__version__ = "v0.6.0" +__version__ = "v0.7.0" __all__ = [ "BrowserType",