Skip to content

Commit

Permalink
added changelog, prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
MarleneKress79789 committed Nov 21, 2023
1 parent bb888ba commit 5575395
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
### All Submissions:

* [ ] Is the title of the Pull Request correct?
* [ ] Is the title of the corresponding issue correct?
* [ ] Have you updated the changelog?
* [ ] Have you checked to ensure there aren't other open [Pull Requests](../../../../pulls) for the same update/change? <!-- markdown-link-check-disable-line -->
* [ ] Are you mentioning the issue which this PullRequest fixes ("Fixes...")

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ In any case, you need to verify your UDFs with integrations test inside the data

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

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

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

Expand Down
3 changes: 3 additions & 0 deletions doc/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Changelog

* [0.1.0](changes_0.1.0.md)
36 changes: 36 additions & 0 deletions doc/changes/changes_0.1.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# UDF Mock Python 0.1.0, released 2023.11.21

Code name: Initial Release

## Summary
This is the initial release of the UDF Mock Python which provides a mock runner for Python3 UDFs which allows you to
test your UDFs locally without a database.

### Features

- #1: Initial Commit
- #3: Relax python version to >=3.6.0
- #7: Make Group work with Iterable and IterableWithSize
- #27: Added getitem method and test
- #33: Split MockContext into Standalone and multi-group
- #40: Added pypi release workflow

### Bugs

- #30: Correction MockContextRunWrapper for variadic input access
- #34: Fixed start_col variable
- #36: Fixed validation of column names for variadic input


### Refactorings

- #5: Update dependencies
- #8: Extract Interface from MockContext and fix availability of some Context functions
- #10: Remove dephell and replace it with poetry
- #29: Add checks for parameter of get_dataframe
- #22: Updated pandas, numpy dependency, added lapack to github actions
- #26: Corrected variable names
- #24: Upgrade python version to 3.8
- #21: Changed mentions of master to main
- #41: Removed setup.py

0 comments on commit 5575395

Please sign in to comment.