From 85201ea869f0337c6ff5fc0761a1c7931ca4e121 Mon Sep 17 00:00:00 2001 From: Ondrej Tuma Date: Tue, 2 May 2023 17:14:05 +0200 Subject: [PATCH] Public release --- ChangeLog | 2 +- prusa/link/__init__.py | 6 +++--- requirements.txt | 3 ++- setup.py | 2 ++ 4 files changed, 8 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index ddfa19da..42f362e6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,6 @@ # ChangeLog -0.7.0rc4 +0.7.0 (2023-05-19) * Fixed printer sends info about api key change to Connect after change * Added the network error beep setting to the web API * Support renaming gcodes directory (cfg and API) diff --git a/prusa/link/__init__.py b/prusa/link/__init__.py index 48f6e41b..e613ab5a 100644 --- a/prusa/link/__init__.py +++ b/prusa/link/__init__.py @@ -3,10 +3,10 @@ Copyright (C) 2023 PrusaResearch """ __application__ = "PrusaLink" -__vendor__ = "PrusaResearch" +__vendor__ = "Prusa Research" -__version__ = "0.7.0rc3" -__date__ = "1 Mar 2023" +__version__ = "0.7.0" +__date__ = "19 May 2023" __copyright__ = "(c) 2023 Prusa 3D" __author_name__ = "PrusaLink Developers" __author_email__ = "link@prusa3d.cz" diff --git a/requirements.txt b/requirements.txt index de0965dc..cc9620a8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ -prusa.connect.sdk.printer~=0.7.0.rc3 +prusa.connect.sdk.printer~=0.7.0 +pip>=22.2.0 bidict~=0.22.1 blinker~=1.5 extendparser~=0.3.1 diff --git a/setup.py b/setup.py index e3de2010..373a520f 100644 --- a/setup.py +++ b/setup.py @@ -126,6 +126,7 @@ def run(self): author_email=__author_email__, maintainer=__author_name__, maintainer_email=__author_email__, + lincese="Freeware", url="https://github.com/prusa3d/Prusa-Link", packages=find_namespace_packages(include=['prusa.*']), include_package_data=True, @@ -137,6 +138,7 @@ def run(self): classifiers=[ "Development Status :: 4 - Beta", "Natural Language :: English", + "License :: Freeware", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 3 :: Only", ],