Skip to content

Commit 76de5d7

Browse files
committed
Prepare release 0.7.0
1 parent 1bba4e2 commit 76de5d7

File tree

5 files changed

+40
-11
lines changed

5 files changed

+40
-11
lines changed

doc/changes/changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

33
* [unreleased](unreleased.md)
4+
* [0.7.0](changes_0.7.0.md)
45
* [0.4.0](changes_0.4.0.md)
56
* [0.3.0](changes_0.3.0.md)
67
* [0.2.0](changes_0.2.0.md)

doc/changes/changes_0.7.0.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# 0.7.0 - 2025-09-11
2+
## Summary
3+
4+
This release loosens the constraints for dependency `numpy` as python 3.13 is only available for numpy versions >2.
5+
6+
### Refactorings
7+
8+
* #64: Update to poetry 2.1.2
9+
* #66: Loosen constraint for dependency `numpy`
10+
11+
## Dependency Updates
12+
13+
### `main`
14+
* Removed dependency `dill:0.3.8`
15+
* Updated dependency `numpy:1.24.4` to `1.26.4`
16+
* Updated dependency `pandas:1.5.3` to `2.2.3`
17+
18+
### `dev`
19+
* Added dependency `exasol-toolbox:1.9.0`
20+
* Added dependency `pytest:8.3.5`
21+
* Added dependency `pytest-cov:5.0.0`

doc/changes/unreleased.md

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1 @@
1-
# UDF Mock Python <version TBD>, released <date TBD>
2-
3-
## Summary
4-
5-
This release loosens the constraints for dependency `numpy` as python 3.13 is only available for numpy versions >2.
6-
7-
### Refactorings
8-
9-
* #64: Update to poetry 2.1.2
10-
* #66: Loosen constraint for dependency `numpy`
1+
# Unreleased

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "exasol-udf-mock-python"
3-
version = "0.4.0"
3+
version = "0.7.0"
44
requires-python = ">=3.10.0,<4.0"
55
description = "Mocking framework for Exasol Python UDFs"
66
authors = [
@@ -23,6 +23,7 @@ pandas = "^2.2.3"
2323
numpy = ">=1.26.4,<3"
2424

2525
[tool.poetry.group.dev.dependencies]
26+
exasol-toolbox = "^1.9.0"
2627
pytest = "^8.2.2"
2728
pytest-cov = "^5.0.0"
2829

version.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
"""
2+
ATTENTION:
3+
This file is generated by exasol/toolbox/nox/_package_version.py when using:
4+
* either "poetry run -- nox -s project:fix"
5+
* or "poetry run -- nox -s version:check -- --fix"
6+
Do not edit this file manually!
7+
If you need to change the version, do so in the pyproject.toml, e.g. by using
8+
`poetry version X.Y.Z`.
9+
"""
10+
11+
MAJOR = 0
12+
MINOR = 7
13+
PATCH = 0
14+
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"
15+
__version__ = VERSION

0 commit comments

Comments
 (0)