diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0ee8c01..816df2d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.3.0" + ".": "0.3.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index b739378..00414f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.3.1](https://github.com/renaudcepre/apte/compare/apte-v0.3.0...apte-v0.3.1) (2026-06-25) + + +### Bug Fixes + +* **docs:** install from PyPI in README ([#141](https://github.com/renaudcepre/apte/issues/141)) ([17eb91b](https://github.com/renaudcepre/apte/commit/17eb91b00ecde6a013c14aab39471c15378b90f5)) + ## [0.3.0](https://github.com/renaudcepre/apte/compare/apte-v0.2.0...apte-v0.3.0) (2026-06-24) diff --git a/apte/__init__.py b/apte/__init__.py index 6ba0863..153292d 100644 --- a/apte/__init__.py +++ b/apte/__init__.py @@ -14,7 +14,7 @@ from apte.plugin import PluginBase from apte.shell import CommandResult, Shell -__version__ = "0.3.0" +__version__ = "0.3.1" __all__ = [ "ApteError", diff --git a/pyproject.toml b/pyproject.toml index 5e8a4a7..2c0328b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "apte" -version = "0.3.0" +version = "0.3.1" description = "Async-first Python testing framework" readme = "README.md" requires-python = ">=3.10"