-
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 #289 from KatharaFramework/develop
Kathará v3.7.5
- Loading branch information
Showing
18 changed files
with
58 additions
and
191 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,7 +1,7 @@ | ||
kathara (__VERSION__-__DEBIAN_PACKAGE_VERSION____UBUNTU_VERSION__) __UBUNTU_VERSION__; urgency=low | ||
|
||
* (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 | ||
* (Docker) Fix "rp_filter" issue on all platforms and Docker versions | ||
* (Docker) Fix Docker API objects reloading | ||
* 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.4 | ||
VERSION=3.7.5 | ||
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,6 +1,6 @@ | ||
__DATE__ Kathara Team <******@kathara.org> | ||
|
||
* Release v__VERSION__ | ||
* (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 | ||
* (Docker) Fix "rp_filter" issue on all platforms and Docker versions | ||
* (Docker) Fix Docker API objects reloading | ||
* 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.4 | ||
version = 3.7.5 | ||
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.4', | ||
version='3.7.5', | ||
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.4.tar.gz', | ||
download_url='https://github.com/KatharaFramework/Kathara/archive/refs/tags/3.7.5.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
from typing import Tuple | ||
|
||
CURRENT_VERSION = "3.7.4" | ||
CURRENT_VERSION = "3.7.5" | ||
|
||
|
||
def parse(version: str) -> Tuple: | ||
|
Oops, something went wrong.