From 7e74fd83c37210ab14365ebe508a669baef04498 Mon Sep 17 00:00:00 2001 From: Christoph Kuhnke Date: Tue, 28 May 2024 09:51:54 +0200 Subject: [PATCH] Release/0.1.0 (#16) * Prepare release 0.1.0 * fixed release task in justfile --- justfile | 8 +++++--- pytest-saas/doc/changes/changelog.md | 2 ++ pytest-saas/doc/changes/changes_0.1.0.md | 12 ++++++++++++ pytest-saas/doc/changes/unreleased.md | 11 ----------- 4 files changed, 19 insertions(+), 14 deletions(-) create mode 100644 pytest-saas/doc/changes/changes_0.1.0.md diff --git a/justfile b/justfile index f61c231..3815213 100644 --- a/justfile +++ b/justfile @@ -21,7 +21,9 @@ test +projects=PROJECTS: # Create a release release project version: - @echo "ensure environment variables are set: POETRY_HTTP_BASIC_PYPI_USERNAME and POETRY_HTTP_BASIC_PYPI_PASSWORD" + @echo "Ensure environment variables are set:" + @echo "- POETRY_HTTP_BASIC_PYPI_USERNAME=__token__" + @echo "- POETRY_HTTP_BASIC_PYPI_PASSWORD=" #!/usr/bin/env bash - echo poetry -C {{project}}/ build - echo poetry -C {{project}}/ publish + poetry -C $(pwd)/{{project}}/ build + poetry -C $(pwd)/{{project}}/ publish diff --git a/pytest-saas/doc/changes/changelog.md b/pytest-saas/doc/changes/changelog.md index c6b9900..8963359 100644 --- a/pytest-saas/doc/changes/changelog.md +++ b/pytest-saas/doc/changes/changelog.md @@ -1,6 +1,7 @@ # Changes * [unreleased](unreleased.md) +* [0.1.0](changes_0.1.0.md) ```{toctree} @@ -8,5 +9,6 @@ hidden: --- unreleased +changes_0.1.0 ``` \ No newline at end of file diff --git a/pytest-saas/doc/changes/changes_0.1.0.md b/pytest-saas/doc/changes/changes_0.1.0.md new file mode 100644 index 0000000..0033283 --- /dev/null +++ b/pytest-saas/doc/changes/changes_0.1.0.md @@ -0,0 +1,12 @@ +# 0.1.0 - 2024-05-28 + +## Summary + +🚀 Initial Release of the pytest-exasol-saas Plugin + +This version introduces the `pytest-exasol-saas` plugin providing pytest functionalities for the API to Exasol SaaS instances provided by [exasol-saas-api](https://github.com/exasol/saas-api-python). + +## Features + +* #9: Added sub-project for exasol-saas-api +* #10: Added pytest fixtures for usage in integration tests of external projects \ No newline at end of file diff --git a/pytest-saas/doc/changes/unreleased.md b/pytest-saas/doc/changes/unreleased.md index 46ce431..79e701b 100644 --- a/pytest-saas/doc/changes/unreleased.md +++ b/pytest-saas/doc/changes/unreleased.md @@ -1,12 +1 @@ # Unreleased - -## Summary - -🚀 Initial Release of the pytest-exasol-saas Plugin - -This version introduces the `pytest-exasol-saas` plugin providing pytest functionalities for the API to Exasol SaaS instances provided by [exasol-saas-api](https://github.com/exasol/saas-api-python). - -## Features - -* #9: Added sub-project for exasol-saas-api -* #10: Added pytest fixtures for usage in integration tests of external projects