From 11ee583fdfb7f57295b958deae64a1e679175617 Mon Sep 17 00:00:00 2001 From: Gris Ge Date: Sun, 23 Feb 2025 15:45:59 +0800 Subject: [PATCH] Bump version to 2.2.42 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 4a8398d11a..4543a20f31 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.2.41 +2.2.42 diff --git a/rust/src/cli/Cargo.toml b/rust/src/cli/Cargo.toml index f67277a99c..ad0e033d95 100644 --- a/rust/src/cli/Cargo.toml +++ b/rust/src/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nmstatectl" -version = "2.2.41" +version = "2.2.42" 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 95aeaa3285..fc4352debf 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.41" +version = "2.2.42" authors = ["Gris Ge "] license = "Apache-2.0" edition = "2021" diff --git a/rust/src/lib/Cargo.toml b/rust/src/lib/Cargo.toml index a701164c31..3d72c25b5e 100644 --- a/rust/src/lib/Cargo.toml +++ b/rust/src/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nmstate" -version = "2.2.41" +version = "2.2.42" 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 1e5ddb720a..5815b50ad0 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.41" +__version__ = "2.2.42" BASE_ON_RUST = True diff --git a/rust/src/python/setup.py b/rust/src/python/setup.py index 324db77e02..56e93dbaa1 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.41", + version="2.2.42", author="Gris Ge", author_email="fge@redhat.com", description="Python binding of nmstate",