Skip to content
Snippets Groups Projects
Commit 29a1d1c0 authored by dilawar's avatar dilawar :ant:
Browse files

Merge branch 'devel' into 'main'

v0.2.1

See merge request !14
parents 8c774ab5 33836d6b
No related branches found
No related tags found
1 merge request!14v0.2.1
Pipeline #4137 passed with stages
in 3 minutes and 58 seconds
......@@ -3,10 +3,11 @@
set -e
git clean -fxd .
_version=$(git describe --exact-match --tags HEAD || echo $(poetry version -s).dev$(date +%Y%m%d))
_version=$(git describe --exact-match --tags HEAD || echo $(poetry version -s).dev$(date -u +%s))
VERSION=${_version#'v'} # remove prefixed 'v' if any
cp pyproject.toml /tmp/pyproject.toml.1
poetry version ${VERSION}
poetry build
poetry run twine upload dist/*.whl -u __token__ -p $BITIA_PYPI_TOKEN || echo "Failed to upload"
python3 -m pip install twine --upgrade
twine upload dist/*.whl -u __token__ -p $BITIA_PYPI_TOKEN
mv /tmp/pyproject.toml.1 pyproject.toml
......@@ -6,13 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.2.0] - 2022-10-22
## [0.2.1] - 2022-10-22
### Added
- Support for `create`, `logs` and `submit` endpoint.
- Support for `BITIA_SERVER` environment variable.
- Setting log level from the command line
- Session support. Same connection can be used throughout the session.
## [0.2.0] - 2022-10-10
- Yanked. See 0.2.1
## [0.1.3] - 2022-09-29
### Added
- Use the public API by default
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment