diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 3e7a41a..c02eab8 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -1,6 +1,19 @@ Changelog ********** +v0.10.0 (2023-05-21) +====================== + +⚡️ Features +------------ +- The downloaded distfile used for determining checksums is cached so that MacPorts can use it for + :code:`port install/test/etc`. +- :code:`port clean` is no longer run at the end. The user might want to keep the distfiles for further tests or + builds, and can run :code:`port clean` themselves if required. +- :code:`--gh` flag added to the pr command. It allows users to explicitly set the path to GitHub CLI. +- The port name is now capitalised correctly regardless of what the user types in. +- Paths for various system commands (e.g. MacPorts, GitHub CLI, etc.) are cached. + v0.9.0 (2023-02-12) ===================== diff --git a/pyproject.toml b/pyproject.toml index fff2872..b89ad7a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "seaport" -version = "0.9.0" +version = "0.10.0" description = "The modern MacPorts portfile updater" authors = ["harens "] maintainers = ["harens "] @@ -71,7 +71,7 @@ max-line-length = "88" target-version = ["py37"] [tool.commitizen] -version = "0.9.0" +version = "0.10.0" tag_format = "v$version" version_files = [ "pyproject.toml:version", diff --git a/seaport/__init__.py b/seaport/__init__.py index fba75f1..d4bbc56 100644 --- a/seaport/__init__.py +++ b/seaport/__init__.py @@ -33,5 +33,5 @@ Find out more at https://seaport.rtfd.io/ """ -__version__ = "0.9.0" +__version__ = "0.10.0" __all__ = ["portfile"]