Skip to content

Commit

Permalink
bump version to 1.0.1rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
bleykauf committed Dec 22, 2023
1 parent 49c1956 commit a15e5eb
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions linien-client/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

from setuptools import find_packages, setup

version = "1.0.1.dev0"
version = "1.0.1rc1"

setup(
name="linien-client",
Expand All @@ -41,6 +41,6 @@
install_requires=[
"fabric>=2.7.0",
"typing_extensions>=4.5.0",
"linien-common==1.0.1.dev0",
"linien-common==1.0.1rc1",
],
)
2 changes: 1 addition & 1 deletion linien-common/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

setup(
name="linien-common",
version="1.0.1.dev0",
version="1.0.1rc1",
author="Benjamin Wiegand",
author_email="[email protected]",
maintainer="Bastian Leykauf",
Expand Down
4 changes: 2 additions & 2 deletions linien-gui/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

from setuptools import find_packages, setup

version = "1.0.1.dev0"
version = "1.0.1rc1"

setup(
name="linien-gui",
Expand All @@ -44,7 +44,7 @@
"pyqtgraph>=0.10.0",
"PyQt5>=5.12.0",
"superqt>=0.2.3",
"linien_client==1.0.1.dev0",
"linien_client==1.0.1rc1",
],
package_data={
# IMPORTANT: any changes have to be made in pyinstaller.spec, too
Expand Down
4 changes: 2 additions & 2 deletions linien-server/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

setup(
name="linien-server",
version="1.0.1.dev0",
version="1.0.1rc1",
author="Benjamin Wiegand",
author_email="[email protected]",
maintainer="Bastian Leykauf",
Expand All @@ -45,7 +45,7 @@
"pyrp3>=1.1.0,<2.0;platform_machine=='armv7l'", # only install on RedPitaya
"requests==2.25.1;python_version<'3.10'", # pinned because of bug in pip 9.0.1, see #339 # noqa: E501
"requests>=2.25.1;python_version>='3.10'",
"linien-common==1.0.1.dev0",
"linien-common==1.0.1rc1",
],
scripts=[
"linien_server/linien_start_server.sh",
Expand Down
2 changes: 1 addition & 1 deletion version-info.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"latest": "1.0.0"
"latest": "1.0.1"
}

0 comments on commit a15e5eb

Please sign in to comment.