From 416a23f04e555b14850c508784eb3ea7aa6d2d5d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 24 Mar 2026 13:04:53 +0000 Subject: [PATCH] chore(main): release protest 0.1.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ protest/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a915e8c..001eb2c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.1" + ".": "0.1.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 5da1f1b..ac6e6b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ 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.1.2](https://github.com/renaudcepre/protest/compare/protest-v0.1.1...protest-v0.1.2) (2026-03-24) + + +### Documentation + +* fix mkdocs strict build and add docs validation to CI ([#87](https://github.com/renaudcepre/protest/issues/87)) ([9b172cd](https://github.com/renaudcepre/protest/commit/9b172cd633b5a8238c6ef0ba3f5469be6869ba2c)) +* remove fixture scoping design document and simplify README ([#85](https://github.com/renaudcepre/protest/issues/85)) ([6900ade](https://github.com/renaudcepre/protest/commit/6900adef3c76c9eae70362bd11c4ecf58f2953d0)) + ## [0.1.1](https://github.com/renaudcepre/protest/compare/protest-v0.1.0...protest-v0.1.1) (2026-03-20) diff --git a/protest/__init__.py b/protest/__init__.py index 6590311..61ab9e6 100644 --- a/protest/__init__.py +++ b/protest/__init__.py @@ -13,7 +13,7 @@ from protest.plugin import PluginBase from protest.shell import CommandResult, Shell -__version__ = "0.1.1" +__version__ = "0.1.2" __all__ = [ "AsyncMockType", diff --git a/pyproject.toml b/pyproject.toml index 090118c..0608d8d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "protest" -version = "0.1.1" +version = "0.1.2" description = "Async-first Python testing framework" readme = "README.md" requires-python = ">=3.10"