diff --git a/CHANGELOG.md b/CHANGELOG.md index ed74d2097..2192edd75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,18 @@ Bugfixes: * TBD +## 0.4.1 (2018-04-19) + +Bugfixes: +* Fixed crashes in `grabCrashLog` by dealing with `str`/`unicode` types better +* Made `repos_update` not update funfuzz anymore, since [pip 10 no longer comes](https://blog.python.org/2018/04/pip-10-has-been-released.html) with a `main` method and we should not rely on the internals of pip +* Simplified `boto` import code +* Inlined platform detection code instead of relying on `subprocesses` +* Tweaked Travis / AppVeyor CI configurations + +Notes: +* Windows is still on the 0.1.x legacy branch, until Python 3.5+ support is completed + ## 0.4.0 (2018-04-13) Features: diff --git a/setup.py b/setup.py index fbaf27390..3b1bf678f 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ if __name__ == "__main__": setup(name="funfuzz", - version="0.5.0a1", + version="0.4.1", entry_points={ "console_scripts": ["funfuzz = funfuzz.bot:main"] },