Skip to content

Commit 28c5824

Browse files
committed
Pynguin 0.43.0
- Add experimental support for Python 3.11, 3.12, and 3.13 (cf. GitHub PR #110, Issue #84) - Improve `subprocess` performance (cf. GitHub PR #110) - Refactor instrumentation, control-flow graph, tracing, and `DynamicSlicer` (cf. GitHub PR #110) - Fix `object_addersses` not reset after each test execution (cf. GitHub PR #110) - Fix use of `CODE_OBJECT_ID_KEY` for modules operating on their docstring (cf. GitHub PR #110) - Fix edge cases in dynamic slicer (cf. GitHub PR #110)
1 parent 5423932 commit 28c5824

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,15 @@ for the source-code artifacts of each version.
1111

1212
## Unreleased
1313

14+
## Pynguin 0.43.0
15+
16+
- Add experimental support for Python 3.11, 3.12, and 3.13 (cf. GitHub PR #110, Issue #84)
17+
- Improve `subprocess` performance (cf. GitHub PR #110)
18+
- Refactor instrumentation, control-flow graph, tracing, and `DynamicSlicer` (cf. GitHub PR #110)
19+
- Fix `object_addersses` not reset after each test execution (cf. GitHub PR #110)
20+
- Fix use of `CODE_OBJECT_ID_KEY` for modules operating on their docstring (cf. GitHub PR #110)
21+
- Fix edge cases in dynamic slicer (cf. GitHub PR #110)
22+
1423
## Pynguin 0.42.0
1524

1625
- Add Test Case & Test Suite Minimization and Crashing Test Minimization

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ FROM python:${PYTHON_VERSION}-slim-bullseye AS execute
3939

4040
# Set environment variables
4141
# Set the Pynguin version
42-
ENV PYNGUIN_VERSION "0.43.0.dev0"
42+
ENV PYNGUIN_VERSION "0.43.0"
4343
# Pynguin requires to set the variable to show it that the user is aware that running
4444
# Pynguin executes third-party code, which could cause arbitrary harm to the system.
4545
# By setting the variable, the user acknowledges that they are aware of this. In the

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[tool.poetry]
66
name = "pynguin"
7-
version = "0.43.0.dev"
7+
version = "0.43.0"
88
description = "Pynguin is a tool for automated unit test generation for Python"
99
authors = [
1010
"Stephan Lukasczyk <stephan@pynguin.eu>",

src/pynguin/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
#
77
"""Specifies the version of Pynguin."""
88

9-
__version__ = "0.43.0.dev"
9+
__version__ = "0.43.0"

0 commit comments

Comments
 (0)