Skip to content

Commit

Permalink
Release Pynguin 0.35.0
Browse files Browse the repository at this point in the history
- Fix `TypeError` bug in instrumentation of bytecode (closes GitHub PR
  #51)
- Add a dump method for type-information statistics
- Fix handling of aliased modules (fixes GitHub issue #57, merges #58)
- Fix method-signature handling for C extensions (fixed GitHub issue
  #59, merges #60)
  • Loading branch information
stephanlukasczyk committed Feb 22, 2024
1 parent 8ff615d commit ff60f80
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ for the source-code artifacts of each version.

## Unreleased

## Pynguin 0.35.0

- Fix `TypeError` bug in instrumentation of bytecode (see GitHub PR #51)
- Add a dump method for type-information statistics
- Fix handling of aliased modules (see GitHub issue #57)
- Fix method-signature handling for C extensions (see GitHub issue #59)

## Pynguin 0.34.0

- Activate a larger selection of checkers for [ruff](https://github.com/astral-sh/ruff)
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,8 @@ of the [University of Passau](https://www.uni-passau.de).
Maintainer: [Stephan Lukasczyk](https://github.com/stephanlukasczyk)

Contributors:
- [Juan Altmayer Pizzorno](https://github.com/jaltmayerpizzorno)
- [Lucas Berg](https://github.com/BergLucas)
- [Tucker Blue](https://github.com/tuckcodes)
- [Gordon Fraser](https://github.com/gofraser)
- [Abdur-Rahmaan Janhangeer](https://github.com/Abdur-rahmaanJ)
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# Build stage for Pynguin
FROM python:3.10.13-slim-bullseye AS build
LABEL org.opencontainers.image.authors="Stephan Lukasczyk <stephan@pynguin.eu>"
ENV POETRY_VERSION "1.5.1"
ENV POETRY_VERSION "1.7.1"

WORKDIR /pynguin-build

Expand Down Expand Up @@ -41,7 +41,7 @@ FROM python:3.10.13-slim-bullseye AS execute

# Set environment variables
# Set the Pynguin version
ENV PYNGUIN_VERSION "0.35.0.dev0"
ENV PYNGUIN_VERSION "0.35.0"
# Pynguin requires to set the variable to show it that the user is aware that running
# Pynguin executes third-party code, which could cause arbitrary harm to the system.
# By setting the variable, the user acknowledges that they are aware of this. In the
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[tool.poetry]
name = "pynguin"
version = "0.35.0.dev"
version = "0.35.0"
description = "Pynguin is a tool for automated unit test generation for Python"
authors = ["Stephan Lukasczyk <stephan@pynguin.eu>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/pynguin/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# SPDX-License-Identifier: MIT
#
"""Specifies the version of Pynguin."""
__version__ = "0.35.0.dev"
__version__ = "0.35.0"

0 comments on commit ff60f80

Please sign in to comment.