Skip to content

Commit 33be985

Browse files
Release Pynguin 0.33.0
- Fix an issue with type-information retrieval (see GitHub issue #35)
1 parent 6411087 commit 33be985

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

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

1212
## Unreleased
1313

14+
## Pynguin 0.33.0
15+
16+
- Fix an issue with type-information retrieval (see GitHub issue #35)
17+
1418
## Pynguin 0.32.0
1519

1620
- *Breaking:* Restructure the code

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ FROM python:3.10.11-slim-bullseye AS execute
4141

4242
# Set environment variables
4343
# Set the Pynguin version
44-
ENV PYNGUIN_VERSION "0.33.0.dev0"
44+
ENV PYNGUIN_VERSION "0.33.0"
4545
# Pynguin requires to set the variable to show it that the user is aware that running
4646
# Pynguin executes third-party code, which could cause arbitrary harm to the system.
4747
# 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.33.0.dev"
7+
version = "0.33.0"
88
description = "Pynguin is a tool for automated unit test generation for Python"
99
authors = ["Stephan Lukasczyk <[email protected]>"]
1010
license = "MIT"

src/pynguin/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
# SPDX-License-Identifier: MIT
66
#
77
"""Specifies the version of Pynguin."""
8-
__version__ = "0.33.0.dev"
8+
__version__ = "0.33.0"

0 commit comments

Comments
 (0)