File tree Expand file tree Collapse file tree 5 files changed +40
-11
lines changed Expand file tree Collapse file tree 5 files changed +40
-11
lines changed Original file line number Diff line number Diff line change 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 )
Original file line number Diff line number Diff line change 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 `
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 11[project ]
22name = " exasol-udf-mock-python"
3- version = " 0.4 .0"
3+ version = " 0.7 .0"
44requires-python = " >=3.10.0,<4.0"
55description = " Mocking framework for Exasol Python UDFs"
66authors = [
@@ -23,6 +23,7 @@ pandas = "^2.2.3"
2323numpy = " >=1.26.4,<3"
2424
2525[tool .poetry .group .dev .dependencies ]
26+ exasol-toolbox = " ^1.9.0"
2627pytest = " ^8.2.2"
2728pytest-cov = " ^5.0.0"
2829
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments