-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #280 from KatharaFramework/develop
Kathará v3.7.4
- Loading branch information
Showing
21 changed files
with
354 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
kathara (__VERSION__-__DEBIAN_PACKAGE_VERSION____UBUNTU_VERSION__) __UBUNTU_VERSION__; urgency=low | ||
|
||
* New CLI UI using "rich" library! | ||
* (Docker) Show progress during Docker image pull, similarly to the official "docker pull" command | ||
* (Docker) It is now correctly possible to specify a "linux/amd64" image on Apple Silicon (which can be run using Rosetta) | ||
* Add "gnome-terminal" as official supported terminal emulator | ||
* Several API improvements and bug fixes | ||
* (Docker) Fix "rp_filter" on "eth0" that was causing startup errors on some distributions | ||
* (Megalos) Fix watch methods while starting/stopping devices that were causing "lstart"/"lclean" to hang indefinitely | ||
* Minor fixes | ||
|
||
-- Kathara Team <[email protected]> __DATE__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/usr/bin/make -f | ||
|
||
VERSION=3.7.3 | ||
VERSION=3.7.4 | ||
PACKAGE_VERSION=1 | ||
AUR_NAME=user | ||
AUR_MAIL[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
__DATE__ Kathara Team <******@kathara.org> | ||
|
||
* Release v__VERSION__ | ||
* New CLI UI using "rich" library! | ||
* (Docker) Show progress during Docker image pull, similarly to the official "docker pull" command | ||
* (Docker) It is now correctly possible to specify a "linux/amd64" image on Apple Silicon (which can be run using Rosetta) | ||
* Add "gnome-terminal" as official supported terminal emulator | ||
* Several API improvements and bug fixes | ||
* (Docker) Fix "rp_filter" on "eth0" that was causing startup errors on some distributions | ||
* (Megalos) Fix watch methods while starting/stopping devices that were causing "lstart"/"lclean" to hang indefinitely | ||
* Minor fixes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[metadata] | ||
name = kathara | ||
version = 3.7.3 | ||
version = 3.7.4 | ||
author = Kathara Framework | ||
author_email = [email protected] | ||
description = A lightweight container-based network emulation tool. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,13 +7,13 @@ | |
package_dir={'': 'src'}, | ||
packages=find_packages('src'), | ||
py_modules=['kathara'], | ||
version='3.7.3', | ||
version='3.7.4', | ||
license='gpl-3.0', | ||
description='A lightweight container-based network emulation tool.', | ||
author='Kathara Framework', | ||
author_email='[email protected]', | ||
url='https://www.kathara.org', | ||
download_url='https://github.com/KatharaFramework/Kathara/archive/refs/tags/3.7.3.tar.gz', | ||
download_url='https://github.com/KatharaFramework/Kathara/archive/refs/tags/3.7.4.tar.gz', | ||
keywords=['NETWORK-EMULATION', 'CONTAINERS', 'NFV'], | ||
install_requires=[ | ||
"binaryornot>=0.4.4", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
from typing import Tuple | ||
|
||
CURRENT_VERSION = "3.7.3" | ||
CURRENT_VERSION = "3.7.4" | ||
|
||
|
||
def parse(version: str) -> Tuple: | ||
|
Oops, something went wrong.