Skip to content

Commit

Permalink
push v0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ckarrie committed Jan 21, 2023
1 parent 04fd77e commit 4c732e7
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 3 deletions.
20 changes: 19 additions & 1 deletion build.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,32 @@ cd ~/workspace/venvs/homeassistant-oekofen
source bin/activate
cd ~/workspace/src/oekofen-api
```

### Push git changes
- Mit git changes pushen

### github Release erstellen
- https://github.com/ckarrie/oekofen-api/releases/new
- Tag (create new): v0.0.2
- Title: v0.0.2
- Button "Publish Release"

### Versionsnummer anpassen in setup.py
### Anpassen in setup.py
```
nano setup.py
```
```python
setup(
...
version="0.0.2",
download_url='https://github.com/ckarrie/oekofen-api/archive/refs/tags/v0.0.2.tar.gz',
...
)

```

```
rm -rf dist
python3 -m build
```

Expand Down
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,19 @@

setup(
name="oekofen_api",
version="0.0.2",
version="0.0.3",
author="Christian Karrié",
author_email="[email protected]",
description="A python library to retrieve statistics from your Oekofen Pelletronic",
download_url='https://github.com/ckarrie/oekofen-api/archive/refs/tags/v0.0.2.tar.gz',
download_url='https://github.com/ckarrie/oekofen-api/archive/refs/tags/v0.0.3.tar.gz',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ckarrie/oekofen-api",
packages=find_packages(),
install_requires=[
'aiohttp>=3.8.1',
'voluptuous>=0.13.1'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
Expand Down

0 comments on commit 4c732e7

Please sign in to comment.