Skip to content

Commit

Permalink
bump version to 1.0.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
bleykauf committed Nov 30, 2023
1 parent 7dd00f7 commit 8facd22
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 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.0.dev0"
version = "1.0.0rc1"

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.0.dev0",
"linien-common==1.0.0rc1",
],
)
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.0.dev0",
version="1.0.0rc1",
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.0.dev0"
version = "1.0.0rc1"

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.0.dev0",
"linien_client==1.0.0rc1",
],
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 @@ -18,7 +18,7 @@

from setuptools import find_packages, setup

version = "1.0.0.dev0"
version = "1.0.0rc1"

setup(
name="linien-server",
Expand Down Expand Up @@ -47,7 +47,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.0.dev0",
"linien-common==1.0.0rc1",
],
scripts=[
"linien_server/linien_start_server.sh",
Expand Down

0 comments on commit 8facd22

Please sign in to comment.