Skip to content

Commit

Permalink
Release/0.1.0 (#16)
Browse files Browse the repository at this point in the history
* Prepare release 0.1.0
* fixed release task in justfile
  • Loading branch information
ckunki authored May 28, 2024
1 parent e2a0157 commit 7e74fd8
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 14 deletions.
8 changes: 5 additions & 3 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -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=<your token>"
#!/usr/bin/env bash
echo poetry -C {{project}}/ build
echo poetry -C {{project}}/ publish
poetry -C $(pwd)/{{project}}/ build
poetry -C $(pwd)/{{project}}/ publish
2 changes: 2 additions & 0 deletions pytest-saas/doc/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
# Changes

* [unreleased](unreleased.md)
* [0.1.0](changes_0.1.0.md)

<!--- This MyST Parser Sphinx directive is necessary to keep Sphinx happy. We need list here all release letters again, because release droid and other scripts assume Markdown --->
```{toctree}
---
hidden:
---
unreleased
changes_0.1.0
```
12 changes: 12 additions & 0 deletions pytest-saas/doc/changes/changes_0.1.0.md
Original file line number Diff line number Diff line change
@@ -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
11 changes: 0 additions & 11 deletions pytest-saas/doc/changes/unreleased.md
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 7e74fd8

Please sign in to comment.