Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## 0.0.1-alpha.3

### Extensions

- Add `-t` / `--tag` flag for filtering tests by custom tag expressions ([#422](https://github.com/karva-dev/karva/pull/422))

### Test Running

- Add `karva.raises` context manager for asserting exceptions ([#430](https://github.com/karva-dev/karva/pull/430))
- Add `-m` / `--match` flag for regex-based test name filtering ([#428](https://github.com/karva-dev/karva/pull/428))
- Replace body_length heuristic with random ordering ([#425](https://github.com/karva-dev/karva/pull/425))

### Contributors

- [@MatthewMckee4](https://github.com/MatthewMckee4)

## 0.0.1-alpha.2

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Karva (0.0.1-alpha.2)
# Karva (0.0.1-alpha.3)

![PyPI - Version](https://img.shields.io/pypi/v/karva)

Expand Down
2 changes: 1 addition & 1 deletion crates/karva/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "karva"
version = "0.0.1-alpha.2"
version = "0.0.1-alpha.3"
default-run = "karva"

edition = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/karva_python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "karva_python"
version = "0.0.1-alpha.2"
version = "0.0.1-alpha.3"

edition = { workspace = true }
rust-version = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ requires = ["maturin>=1.7,<2.0"]

[project]
name = "karva"
version = "0.0.1-alpha.2"
version = "0.0.1-alpha.3"
description = "A Python test framework, written in Rust."
authors = [{ name = "Matthew McKee", email = "matthewmckee4@yahoo.co.uk" }]
license = { file = "LICENSE" }
Expand Down
2 changes: 1 addition & 1 deletion python/karva/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
tags,
)

__version__ = "0.0.1-alpha.2"
__version__ = "0.0.1-alpha.3"

__all__: list[str] = [
"ExceptionInfo",
Expand Down
2 changes: 1 addition & 1 deletion seal.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[release]
current-version = "0.0.1-alpha.2"
current-version = "0.0.1-alpha.3"

version-files = [
"README.md",
Expand Down
Loading