From 91f338bd3aa95498f1da50684241942abc2237f8 Mon Sep 17 00:00:00 2001 From: Gris Ge Date: Wed, 20 Nov 2024 12:13:47 +0800 Subject: [PATCH] Bump version to 2.2.40 Signed-off-by: Gris Ge --- VERSION | 2 +- rust/src/cli/Cargo.toml | 2 +- rust/src/clib/Cargo.toml | 2 +- rust/src/lib/Cargo.toml | 2 +- rust/src/python/libnmstate/__init__.py | 2 +- rust/src/python/setup.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/VERSION b/VERSION index fdaade671a..f445ab116f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.2.39 +2.2.40 diff --git a/rust/src/cli/Cargo.toml b/rust/src/cli/Cargo.toml index b92730523c..ff72ae22be 100644 --- a/rust/src/cli/Cargo.toml +++ b/rust/src/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nmstatectl" -version = "2.2.39" +version = "2.2.40" authors = ["Gris Ge "] description = "Command line tool for networking management in a declarative manner" license = "Apache-2.0" diff --git a/rust/src/clib/Cargo.toml b/rust/src/clib/Cargo.toml index 8acccca133..0c48532329 100644 --- a/rust/src/clib/Cargo.toml +++ b/rust/src/clib/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "nmstate-clib" description = "Nmstate C binding" -version = "2.2.39" +version = "2.2.40" authors = ["Gris Ge "] license = "Apache-2.0" edition = "2021" diff --git a/rust/src/lib/Cargo.toml b/rust/src/lib/Cargo.toml index 9ed7e0b3f5..77603a16eb 100644 --- a/rust/src/lib/Cargo.toml +++ b/rust/src/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nmstate" -version = "2.2.39" +version = "2.2.40" authors = ["Gris Ge "] description = "Library for networking management in a declarative manner" license = "Apache-2.0" diff --git a/rust/src/python/libnmstate/__init__.py b/rust/src/python/libnmstate/__init__.py index 93a5c14e1f..cc09142b9e 100644 --- a/rust/src/python/libnmstate/__init__.py +++ b/rust/src/python/libnmstate/__init__.py @@ -24,6 +24,6 @@ "show_running_config", ] -__version__ = "2.2.39" +__version__ = "2.2.40" BASE_ON_RUST = True diff --git a/rust/src/python/setup.py b/rust/src/python/setup.py index 911ce3ced2..aacb765f79 100644 --- a/rust/src/python/setup.py +++ b/rust/src/python/setup.py @@ -15,7 +15,7 @@ def requirements(): setuptools.setup( name="nmstate", - version="2.2.39", + version="2.2.40", author="Gris Ge", author_email="fge@redhat.com", description="Python binding of nmstate",