Skip to content

Commit

Permalink
prepare release 1.1
Browse files Browse the repository at this point in the history
- add scope functions
  • Loading branch information
drunsinn committed Mar 22, 2023
1 parent f24fe82 commit 1c9156b
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 16 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
## License
MIT License

Copyright (c) 2020 - 2022 drunsinn
Copyright (c) 2020 - 2023 drunsinn

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# -- Project information -----------------------------------------------------

project = "pyLSV2"
copyright = "2021, drunsinn"
copyright = "2023, drunsinn"
author = "drunsinn"

# The full version, including alpha/beta/rc tags
Expand Down
2 changes: 1 addition & 1 deletion pyLSV2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from .translate_messages import *
from .err import *

__version__ = "1.0.1"
__version__ = "1.1.0"
__author__ = "drunsinn"
__license__ = "MIT"
__email__ = "[email protected]"
4 changes: 2 additions & 2 deletions pyLSV2/locales/de/LC_MESSAGES/error_text.po
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# pyLSV2 error text translation file.
# Copyright (C) 2021
# Copyright (C) 2023
# This file is distributed under the same MIT license as pyLSV2 package.
# drunsinn <[email protected]>, 2021.
# drunsinn <[email protected]>, 2023.
#
#, fuzzy
msgid ""
Expand Down
4 changes: 2 additions & 2 deletions pyLSV2/locales/de/LC_MESSAGES/message_text.po
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# pyLSV2 message text translation file.
# Copyright (C) 2021
# Copyright (C) 2023
# This file is distributed under the same MIT license as pyLSV2 package.
# drunsinn <[email protected]>, 2021.
# drunsinn <[email protected]>, 2023.
#
#, fuzzy
msgid ""
Expand Down
8 changes: 4 additions & 4 deletions pyLSV2/locales/en/LC_MESSAGES/error_text.po
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# pyLSV2 error text translation file.
# Copyright (C) 2021
# Copyright (C) 2023
# This file is distributed under the same MIT license as pyLSV2 package.
# drunsinn <[email protected]>, 2021.
# drunsinn <[email protected]>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: 0.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-26 19:44+0100\n"
"PO-Revision-Date: 2021-01-26 19:44+0100\n"
"POT-Creation-Date: 2023-01-26 19:44+0100\n"
"PO-Revision-Date: 2023-01-26 19:44+0100\n"
"Last-Translator: [email protected]\n"
"Language-Team: English [email protected]\n"
"Language: English\n"
Expand Down
4 changes: 2 additions & 2 deletions pyLSV2/locales/en/LC_MESSAGES/message_text.po
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# pyLSV2 message text translation file.
# Copyright (C) 2021
# Copyright (C) 2023
# This file is distributed under the same MIT license as pyLSV2 package.
# drunsinn <[email protected]>, 2021.
# drunsinn <[email protected]>, 2023.
#
#, fuzzy
msgid ""
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name="pyLSV2",
python_requires=">=3.4",
python_requires=">=3.5",
packages=find_packages(
include=[
"pyLSV2",
Expand All @@ -24,11 +24,10 @@
url="https://github.com/drunsinn/pyLSV2",
license=__license__,
install_requires=[],
scripts=["scripts/lsv2cmd.py", "scripts/tab2csv.py"],
scripts=["scripts/lsv2cmd.py", "scripts/tab2csv.py", "scripts/scope2csv.py"],
keywords="LSV2 cnc communication transfer plc",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
Expand Down

0 comments on commit 1c9156b

Please sign in to comment.