Skip to content

Commit

Permalink
release v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
raymar9 committed May 19, 2023
1 parent 8eae3d5 commit 054159c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 19 deletions.
10 changes: 10 additions & 0 deletions backend/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
smartmeter-datacollector-configurator (1.1.0-1) unstable; urgency=low

* add L+G E360 meter
* add Kamstrup HAN meter
* update frontend & backend dependencies
* add support for Python 3.10, remove Python 3.7 support
* upgrade deb build to bullseye (RPi & Debian) (no buster build anymore)

-- Supercomputing Systems AG <[email protected]> Fri, 19 May 2023 10:09:36 +0200

smartmeter-datacollector-configurator (1.0.2-1) unstable; urgency=low

* update node version to 16 (LTS)
Expand Down
28 changes: 10 additions & 18 deletions backend/debian/postinst
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,16 @@ set -e

echo -n "Installing dependencies using pip.."
# write a pip requirements.txt for automatic dependency installation
echo "#
# These requirements were autogenerated by pipenv
# To regenerate from the project's Pipfile, run:
#
# pipenv lock --requirements
#
-i https://pypi.org/simple
anyio==3.5.0; python_full_version >= '3.6.2'
asgiref==3.5.0; python_version >= '3.7'
click==8.1.1; python_version >= '3.7'
h11==0.13.0; python_version >= '3.6'
idna==3.3; python_version >= '3.5'
pydantic==1.8.2
sniffio==1.2.0; python_version >= '3.5'
starlette==0.16.0
typing-extensions==4.1.1; python_version >= '3.6'
uvicorn==0.15.0" > /tmp/requirements.txt
echo "-i https://pypi.org/simple
anyio==3.6.2 ; python_full_version >= '3.6.2'
click==8.1.3 ; python_version >= '3.7'
h11==0.14.0 ; python_version >= '3.7'
idna==3.4 ; python_version >= '3.5'
pydantic==1.10.7
sniffio==1.3.0 ; python_version >= '3.7'
starlette==0.27.0
typing-extensions==4.5.0 ; python_version >= '3.7'
uvicorn==0.22.0" > /tmp/requirements.txt
# install all required dependencies
python3 -m pip install -r /tmp/requirements.txt > /dev/null 2>&1
rm /tmp/requirements.txt
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.2"
__version__ = "1.1.0"

0 comments on commit 054159c

Please sign in to comment.