Skip to content

Commit

Permalink
release v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
raymar9 committed Mar 27, 2024
1 parent d1aa993 commit 1514761
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 13 deletions.
7 changes: 7 additions & 0 deletions backend/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
smartmeter-datacollector-configurator (1.2.0-1) unstable; urgency=low

* add L+G E570 meter
* update frontend & backend dependencies

-- Supercomputing Systems AG <[email protected]> Wed, 27 Mar 2024 13:10:32 +0100

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

* add L+G E360 meter
Expand Down
17 changes: 9 additions & 8 deletions backend/debian/postinst
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,16 @@ set -e
echo -n "Installing dependencies using pip.."
# write a pip requirements.txt for automatic dependency installation
echo "-i https://pypi.org/simple
anyio==3.6.2 ; python_full_version >= '3.6.2'
click==8.1.3 ; python_version >= '3.7'
anyio==4.3.0 ; python_version >= '3.8'
click==8.1.7 ; python_version >= '3.7'
exceptiongroup==1.2.0 ; python_version < '3.11'
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
idna==3.6 ; python_version >= '3.5'
pydantic==1.10.14
sniffio==1.3.1 ; python_version >= '3.7'
starlette==0.37.2
typing-extensions==4.10.0 ; python_version >= '3.8'
uvicorn==0.29.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.1.0"
__version__ = "1.2.0"
2 changes: 1 addition & 1 deletion frontend/smartmeter-datacollector-configurator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Install latest LTS [nodejs (version 16.x.x)](https://nodejs.org/en/) which also

Setup the project running
```
npm install --dev
npm install --include=dev
```
inside the `frontend/smartmeter-datacollector-configurator` directory.

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "smartmeter-datacollector-configurator",
"version": "1.1.0",
"version": "1.2.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down

0 comments on commit 1514761

Please sign in to comment.