From e9c3b3b052d39c3030c0f792ed4e0311b7468329 Mon Sep 17 00:00:00 2001 From: Pradyun Gedam Date: Wed, 7 Dec 2022 02:30:12 +0000 Subject: [PATCH] Bump for release --- docs/changelog.md | 11 +++++++++++ src/installer/__init__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/docs/changelog.md b/docs/changelog.md index a7bf445f..2f9c4948 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,16 @@ # Changelog +## v0.6.0 (Dec 7, 2022) + +- Add support for Python 3.11 (#154) +- Encode hashes in `RECORD` files correctly (#141) +- Add `py.typed` marker file (#138) +- Implement `--prefix` option (#103) +- Fix the unbound `is_executable` (#115) +- Construct `RECORD` file using `csv.writer` (#118) +- Move away from `import installer.xyz` style imports (#110) +- Improve existing documentation content (typos, formatting) (#109) + ## v0.5.1 (Mar 11, 2022) - Change all names in `installer.__main__` to be underscore prefixed. diff --git a/src/installer/__init__.py b/src/installer/__init__.py index cc6f19a3..aa8e2447 100644 --- a/src/installer/__init__.py +++ b/src/installer/__init__.py @@ -1,6 +1,6 @@ """A library for installing Python wheels.""" -__version__ = "0.6.0.dev0" +__version__ = "0.6.0" __all__ = ["install"] from installer._core import install # noqa