Skip to content

Commit 099abb6

Browse files
committed
Release Pynguin 0.45.0
- Improve logging with master-worker architecture (cf. GitHub PR #136, #139) - Improve the temporary activation/deactivation of the tracer (cf. GitHub PR #137) - Fix fitness computation (cf. GitHub PR #138) - Fix infinite mutation loop in EnumPrimitiveStatement and ClassPrimitiveStatement (cf. GitHub PR #140) - Fix crash due to OSError during subprocess result reception - Fixes for Local Search
1 parent f8e4174 commit 099abb6

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.45.0
15+
16+
- Improve logging with master-worker architecture (cf. GitHub PR #136, #139)
17+
- Improve the temporary activation/deactivation of the tracer (cf. GitHub PR #137)
18+
- Fix fitness computation (cf. GitHub PR #138)
19+
- Fix infinite mutation loop in EnumPrimitiveStatement and ClassPrimitiveStatement (cf. GitHub PR #140)
20+
- Fix crash due to OSError during subprocess result reception
21+
- Fixes for Local Search
22+
1423
## Pynguin 0.44.0
1524

1625
- Remove unnecessary log messages in case of test execution timeouts (cf. GitHub PR #113)

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.45.0.dev0"
42+
ENV PYNGUIN_VERSION "0.45.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.45.0.dev"
7+
version = "0.45.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.45.0.dev"
9+
__version__ = "0.45.0"

0 commit comments

Comments
 (0)