From 7921dbec7d8adc8c084ac5e274e70a94619d534f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marlene=20Kre=C3=9F?= Date: Wed, 22 Nov 2023 12:21:31 +0100 Subject: [PATCH] #46: Fixed wrong name in install instructions (#47) --- README.md | 4 ++-- doc/changes/changelog.md | 1 + doc/changes/changes_0.2.0.md | 20 ++++++++++++++++++++ pyproject.toml | 2 +- 4 files changed, 24 insertions(+), 3 deletions(-) create mode 100644 doc/changes/changes_0.2.0.md diff --git a/README.md b/README.md index de6bb4d..c270c5c 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ In any case, you need to verify your UDFs with integrations test inside the data ### Installing via pip ``` -pip install udf-mock-python +pip install exasol-udf-mock-python ``` ### Installing via poetry @@ -22,7 +22,7 @@ Add it to your `tool.poetry.dependencies` or `tool.poetry.dev-dependencies` ``` [tool.poetry.dev-dependencies] -udf-mock-python = "^0.1.0" +exasol-udf-mock-python = "^0.1.0" ... ``` diff --git a/doc/changes/changelog.md b/doc/changes/changelog.md index 387930a..0210b05 100644 --- a/doc/changes/changelog.md +++ b/doc/changes/changelog.md @@ -1,3 +1,4 @@ # Changelog +* [0.2.0](changes_0.2.0.md) * [0.1.0](changes_0.1.0.md) \ No newline at end of file diff --git a/doc/changes/changes_0.2.0.md b/doc/changes/changes_0.2.0.md new file mode 100644 index 0000000..8b1f643 --- /dev/null +++ b/doc/changes/changes_0.2.0.md @@ -0,0 +1,20 @@ +# UDF Mock Python 0.2.0, released T.B.D + +Code name: T.B.D + +## Summary + +T.B.D + +### Features + + - N/A + +### Bugs + + - N/A + + +### Refactorings + + - #46: Fixed wrong package name in install instructions \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index c95a95d..7239fa5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "exasol-udf-mock-python" -version = "0.1.0" +version = "0.2.0" description = "Mocking framework for Exasol Python UDFs" license = "MIT"