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
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# Changelog

## 0.0.1-alpha.4

### CLI

- Add `--watch` flag to `karva test` ([#486](https://github.com/karva-dev/karva/pull/486))
- Add `--dry-run` flag to `karva test` ([#479](https://github.com/karva-dev/karva/pull/479))

### Extensions

- Show span annotations for each fixture in dependency chain ([#488](https://github.com/karva-dev/karva/pull/488))
- Show fixture dependency chain in error messages ([#487](https://github.com/karva-dev/karva/pull/487))
- Fully support async tests and fixtures ([#485](https://github.com/karva-dev/karva/pull/485))

### Snapshot Testing

- Add assert_cmd_snapshot function and Command class ([#461](https://github.com/karva-dev/karva/pull/461))
- Add `assert_json_snapshot` function ([#458](https://github.com/karva-dev/karva/pull/458))
- Add `name=` parameter to `assert_snapshot` for named snapshots ([#457](https://github.com/karva-dev/karva/pull/457))
- Add `karva snapshot delete` command and fix snapshot path filtering ([#455](https://github.com/karva-dev/karva/pull/455))
- Add snapshot_settings context manager with filter support ([#454](https://github.com/karva-dev/karva/pull/454))
- Add `karva snapshot prune` command ([#453](https://github.com/karva-dev/karva/pull/453))
- Add inline snapshots (insta-style) ([#450](https://github.com/karva-dev/karva/pull/450))
- Add snapshot testing ([#444](https://github.com/karva-dev/karva/pull/444))

### Contributors

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

## 0.0.1-alpha.3

### Extensions
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.3)
# Karva (0.0.1-alpha.4)

![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.3"
version = "0.0.1-alpha.4"
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.3"
version = "0.0.1-alpha.4"

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.3"
version = "0.0.1-alpha.4"
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 @@ -22,7 +22,7 @@
tags,
)

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

__all__: list[str] = [
"Command",
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.3"
current-version = "0.0.1-alpha.4"

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