diff --git a/docker-run-docker-ros/pyproject.toml b/docker-run-docker-ros/pyproject.toml index 50b761e..1b99393 100644 --- a/docker-run-docker-ros/pyproject.toml +++ b/docker-run-docker-ros/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "docker-run-docker-ros" -version = "1.0.0" +version = "1.0.1" description = "docker-run plugin for Docker images built by docker-ros" license = {file = "LICENSE"} readme = "README.md" @@ -23,7 +23,7 @@ classifiers = [ "Operating System :: POSIX :: Linux", ] keywords = ["docker", "container", "ros"] -dependencies = ["docker-run"] +dependencies = ["docker-run-cli>=0.9.1"] requires-python = ">=3.7" [project.urls] diff --git a/docker-run-docker-ros/src/docker_run/plugins/docker_ros.py b/docker-run-docker-ros/src/docker_run/plugins/docker_ros.py index 6fbbd52..ff5085a 100644 --- a/docker-run-docker-ros/src/docker_run/plugins/docker_ros.py +++ b/docker-run-docker-ros/src/docker_run/plugins/docker_ros.py @@ -6,7 +6,7 @@ from docker_run.plugins.plugin import Plugin -__version__ = "1.0.0" +__version__ = "1.0.1" class DockerRosPlugin(Plugin): diff --git a/docker-run/pyproject.toml b/docker-run/pyproject.toml index a3ff489..6a85673 100644 --- a/docker-run/pyproject.toml +++ b/docker-run/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "docker-run-cli" -version = "0.9.0" +version = "0.9.1" description = "'docker run' and 'docker exec' with useful defaults" license = {file = "LICENSE"} readme = "README.md" @@ -28,7 +28,7 @@ requires-python = ">=3.7" [project.optional-dependencies] dev = ["build", "twine"] -docker-ros = ["docker-run-docker-ros"] +docker-ros = ["docker-run-docker-ros>=1.0.1"] plugins = ["docker-run-cli[docker-ros]"] all = ["docker-run-cli[plugins]", "docker-run-cli[dev]"] diff --git a/docker-run/src/docker_run/__init__.py b/docker-run/src/docker_run/__init__.py index eec0b5c..8d26a9f 100644 --- a/docker-run/src/docker_run/__init__.py +++ b/docker-run/src/docker_run/__init__.py @@ -1,2 +1,2 @@ __name__ = "docker-run" -__version__ = "0.9.0" \ No newline at end of file +__version__ = "0.9.1" \ No newline at end of file