Skip to content

Commit 36b32e7

Browse files
author
Jean-Louis Fuchs
authored
Merge pull request #197 from ganwell/t/1.2.0_e33d
chore(release): v1.2.0
2 parents ece7f6c + 3a7af21 commit 36b32e7

File tree

4 files changed

+41
-44
lines changed

4 files changed

+41
-44
lines changed

.github/workflows/pypi.yml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: PyPI
2+
3+
on:
4+
release:
5+
types: [created]
6+
7+
jobs:
8+
publish:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v3
12+
13+
- name: Install poetry
14+
run: pipx install poetry
15+
16+
- name: Setup python
17+
uses: actions/setup-python@v4
18+
with:
19+
python-version: "3.8"
20+
cache: "poetry"
21+
22+
- name: Install dependencies
23+
run: |
24+
python -m pip install -U twine
25+
poetry install
26+
- name: Build package
27+
run: poetry build
28+
29+
- name: Upload to PyPI
30+
run: twine upload dist/*
31+
env:
32+
TWINE_USERNAME: __token__
33+
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
34+
TWINE_NON_INTERACTIVE: true

.github/workflows/release.yml

-43
This file was deleted.

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
<!--next-version-placeholder-->
44

5+
### Feature
6+
* Add post-write-hook/callback ([`80cbf38`](https://github.com/projectcaluma/manabi/commit/80cbf387a775e1a417e3a44bcfb884e926d5bf08))
7+
8+
### Fix
9+
* **token:** Handle errors from msgpack by creating a invalid token ([`81a5ccf`](https://github.com/projectcaluma/manabi/commit/81a5ccff740112947c8fb67b97d17d6e640eedfb))
10+
511
## v1.1.0 (2023-07-03)
612

713
### Feature

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "manabi"
3-
version = "1.1.0"
3+
version = "1.2.0"
44
description = "Provide WebDAV access for documents."
55
homepage = "https://github.com/projectcaluma/manabi"
66
repository = "https://github.com/projectcaluma/manabi"

0 commit comments

Comments
 (0)