Skip to content

Commit 7d69fda

Browse files
Added changelog, prepared release (#45)
* added changelog, prepare release Co-authored-by: Christoph Kuhnke <github@kuhnke.net>
1 parent bb888ba commit 7d69fda

File tree

4 files changed

+50
-2
lines changed

4 files changed

+50
-2
lines changed

.github/pull_request_template.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
### All Submissions:
2+
3+
* [ ] Is the title of the pull request correct?
4+
* [ ] Is the title of the corresponding issue correct?
5+
* [ ] Have you updated the changelog?
6+
* [ ] Have you checked to ensure there aren't other open [pull requests](../../../../pulls) for the same update/change? <!-- markdown-link-check-disable-line -->
7+
* [ ] Are you mentioning the issue which this pull request fixes ("Fixes...")
8+

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ In any case, you need to verify your UDFs with integrations test inside the data
1414

1515
### Installing via pip
1616
```
17-
pip install git+https://github.com/exasol/udf-mock-python.git@main
17+
pip install udf-mock-python
1818
```
1919

2020
### Installing via poetry
2121
Add it to your `tool.poetry.dependencies` or `tool.poetry.dev-dependencies`
2222

2323
```
2424
[tool.poetry.dev-dependencies]
25-
exasol-udf-mock-python = { git = "https://github.com/exasol/udf-mock-python.git", branch = "main" }
25+
udf-mock-python = "^0.1.0"
2626
...
2727
```
2828

doc/changes/changelog.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Changelog
2+
3+
* [0.1.0](changes_0.1.0.md)

doc/changes/changes_0.1.0.md

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# UDF Mock Python 0.1.0, released 2023.11.22
2+
3+
Code name: Initial Release
4+
5+
## Summary
6+
7+
This is the initial release of the UDF Mock Python which provides a mock runner for Python3 UDFs which allows you to
8+
test your UDFs locally without a database.
9+
10+
### Features
11+
12+
- #1: Initial Commit
13+
- #3: Relax python version to >=3.6.0
14+
- #7: Make Group work with Iterable and IterableWithSize
15+
- #27: Added getitem method and test
16+
- #33: Split MockContext into Standalone and multi-group
17+
- #40: Added pypi release workflow
18+
19+
### Bugs
20+
21+
- #30: Correction MockContextRunWrapper for variadic input access
22+
- #34: Fixed start_col variable
23+
- #36: Fixed validation of column names for variadic input
24+
25+
26+
### Refactorings
27+
28+
- #5: Update dependencies
29+
- #8: Extract Interface from MockContext and fix availability of some Context functions
30+
- #10: Remove dephell and replace it with poetry
31+
- #29: Add checks for parameter of get_dataframe
32+
- #22: Updated pandas, numpy dependency, added lapack to github actions
33+
- #26: Corrected variable names
34+
- #24: Upgrade python version to 3.8
35+
- #21: Changed mentions of master to main
36+
- #41: Removed setup.py
37+

0 commit comments

Comments
 (0)