Skip to content

Commit

Permalink
Bump version to 0.0.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmarktaylor committed Sep 4, 2024
1 parent e2c7977 commit 8364888
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch:

env:
ref: v0.0.3
ref: v0.0.4

jobs:
builddist:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

env:
project: phmutest
version: 0.0.3
version: 0.0.4
command: phmutest

jobs:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# phmutest 0.0.3
# phmutest 0.0.4

## Detect broken Python examples in Markdown

Expand Down
2 changes: 1 addition & 1 deletion docs/api.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Tool API for phmutest version 0.0.3
# Tool API for phmutest version 0.0.4

## API - phmutest.tool

Expand Down
2 changes: 1 addition & 1 deletion docs/fixture_py.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# src/phmutest/fixture.py

```python
"""v0.0.3 Keyword arguments passed to --fixture function and return type Fixture.
"""v0.0.4 Keyword arguments passed to --fixture function and return type Fixture.
These are passed to the fixture function as keyword arguments:
Expand Down
5 changes: 5 additions & 0 deletions docs/recent_changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,8 @@
0.0.3 - 2023-09-24

- Add test_importer.py. Cleanups

0.0.4 - 2024-09-05

- Bugfix- Issue- The generated expected output check in code mode
asserts if the FCB length is greater than a fairly small value.
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
site_name: phmutest 0.0.3
site_name: phmutest 0.0.4
site_description: Detect broken Python examples in Markdown
copyright: Copyright (c) 2023 Mark Taylor
docs_dir: _mkdocsin
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license_files = LICENSE

# https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html
name = phmutest
version = 0.0.3
version = 0.0.4
author = Mark Taylor
author_email = [email protected]
description = Detect broken Python examples in Markdown.
Expand Down
2 changes: 1 addition & 1 deletion src/phmutest/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.3"
__version__ = "0.0.4"
2 changes: 1 addition & 1 deletion src/phmutest/fixture.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""v0.0.3 Keyword arguments passed to --fixture function and return type Fixture.
"""v0.0.4 Keyword arguments passed to --fixture function and return type Fixture.
These are passed to the fixture function as keyword arguments:
Expand Down

0 comments on commit 8364888

Please sign in to comment.