Skip to content

Commit 2b92aec

Browse files
committed
fix interdependencies after core package renaming
1 parent b2d9bf1 commit 2b92aec

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

docker-run-docker-ros/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "docker-run-docker-ros"
7-
version = "1.0.0"
7+
version = "1.0.1"
88
description = "docker-run plugin for Docker images built by docker-ros"
99
license = {file = "LICENSE"}
1010
readme = "README.md"
@@ -23,7 +23,7 @@ classifiers = [
2323
"Operating System :: POSIX :: Linux",
2424
]
2525
keywords = ["docker", "container", "ros"]
26-
dependencies = ["docker-run"]
26+
dependencies = ["docker-run-cli>=0.9.1"]
2727
requires-python = ">=3.7"
2828

2929
[project.urls]

docker-run-docker-ros/src/docker_run/plugins/docker_ros.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from docker_run.plugins.plugin import Plugin
77

88

9-
__version__ = "1.0.0"
9+
__version__ = "1.0.1"
1010

1111

1212
class DockerRosPlugin(Plugin):

docker-run/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "docker-run-cli"
7-
version = "0.9.0"
7+
version = "0.9.1"
88
description = "'docker run' and 'docker exec' with useful defaults"
99
license = {file = "LICENSE"}
1010
readme = "README.md"
@@ -28,7 +28,7 @@ requires-python = ">=3.7"
2828

2929
[project.optional-dependencies]
3030
dev = ["build", "twine"]
31-
docker-ros = ["docker-run-docker-ros"]
31+
docker-ros = ["docker-run-docker-ros>=1.0.1"]
3232
plugins = ["docker-run-cli[docker-ros]"]
3333
all = ["docker-run-cli[plugins]", "docker-run-cli[dev]"]
3434

docker-run/src/docker_run/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
__name__ = "docker-run"
2-
__version__ = "0.9.0"
2+
__version__ = "0.9.1"

0 commit comments

Comments
 (0)