File tree 4 files changed +8
-3
lines changed
4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,11 @@ for the source-code artifacts of each version.
11
11
12
12
## Unreleased
13
13
14
+ ### Pynguin 0.39.0
15
+
16
+ - Fix a bug in the handling of infinite loops in global scope (thanks to @BergLucas in
17
+ #65 )
18
+
14
19
### Pynguin 0.38.0
15
20
16
21
- Remove the dependency to our custom [ MutPy fork] ( https://github.com/se2p/MutPy-Pynguin )
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ FROM python:3.10.14-slim-bullseye AS execute
36
36
37
37
# Set environment variables
38
38
# Set the Pynguin version
39
- ENV PYNGUIN_VERSION "0.39.0.dev0 "
39
+ ENV PYNGUIN_VERSION "0.39.0"
40
40
# Pynguin requires to set the variable to show it that the user is aware that running
41
41
# Pynguin executes third-party code, which could cause arbitrary harm to the system.
42
42
# By setting the variable, the user acknowledges that they are aware of this. In the
Original file line number Diff line number Diff line change 4
4
5
5
[tool .poetry ]
6
6
name = " pynguin"
7
- version = " 0.39.0.dev "
7
+ version = " 0.39.0"
8
8
description = " Pynguin is a tool for automated unit test generation for Python"
9
9
authors = [
" Stephan Lukasczyk <[email protected] >" ]
10
10
license = " MIT"
Original file line number Diff line number Diff line change 5
5
# SPDX-License-Identifier: MIT
6
6
#
7
7
"""Specifies the version of Pynguin."""
8
- __version__ = "0.39.0.dev "
8
+ __version__ = "0.39.0"
You can’t perform that action at this time.
0 commit comments