Skip to content

Commit

Permalink
bump: version 0.9.0 → 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
harens committed May 21, 2023
1 parent 808ebf4 commit f1d5514
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -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)
=====================

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "seaport"
version = "0.9.0"
version = "0.10.0"
description = "The modern MacPorts portfile updater"
authors = ["harens <[email protected]>"]
maintainers = ["harens <[email protected]>"]
Expand Down Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion seaport/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
Find out more at https://seaport.rtfd.io/
"""

__version__ = "0.9.0"
__version__ = "0.10.0"
__all__ = ["portfile"]

0 comments on commit f1d5514

Please sign in to comment.