diff --git a/VERSION b/VERSION index ef0bec0b..99452228 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.2.27 +2.2.28 diff --git a/rust/src/cli/Cargo.toml b/rust/src/cli/Cargo.toml index 7e5de78a..f4a461d8 100644 --- a/rust/src/cli/Cargo.toml +++ b/rust/src/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nmstatectl" -version = "2.2.27" +version = "2.2.28" 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 1704e4e1..1e46a3ee 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.27" +version = "2.2.28" authors = ["Gris Ge "] license = "Apache-2.0" edition = "2021" diff --git a/rust/src/lib/Cargo.toml b/rust/src/lib/Cargo.toml index 63eebf5c..6cdf7850 100644 --- a/rust/src/lib/Cargo.toml +++ b/rust/src/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nmstate" -version = "2.2.27" +version = "2.2.28" 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 e1e89dd8..82bfe801 100644 --- a/rust/src/python/libnmstate/__init__.py +++ b/rust/src/python/libnmstate/__init__.py @@ -20,6 +20,6 @@ __all__ = [ "show_running_config", ] -__version__ = "2.2.27" +__version__ = "2.2.28" BASE_ON_RUST = True diff --git a/rust/src/python/setup.py b/rust/src/python/setup.py index 7016486b..23a362f0 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.27", + version="2.2.28", author="Gris Ge", author_email="fge@redhat.com", description="Python binding of nmstate",