Skip to content

Commit 2743e0a

Browse files
committed
Minor fix and bump version/changelog for release
1 parent d3de401 commit 2743e0a

File tree

6 files changed

+11
-6
lines changed

6 files changed

+11
-6
lines changed

scripts/Linux/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/make -f
22

3-
VERSION=2.2.1
3+
VERSION=2.2.2
44
DEBIAN_PACKAGE_VERSION=1
55
LAUNCHPAD_NAME=user
66

scripts/Linux/debian/changelog

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
kathara (__VERSION__-__DEBIAN_PACKAGE_VERSION____UBUNTU_VERSION__) __UBUNTU_VERSION__; urgency=low
22

3-
* Minor fix for lab.ext
3+
* Fix Windows Connect
4+
* Add custom machine sysctls
5+
* Add lconfig command
6+
* Fix machine binary files copy
47

58
-- Mariano Scazzariello <******@gmail.com> __DATE__

scripts/OSX/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/make -s
22

33
PRODUCT=Kathara
4-
VERSION=2.2.1
4+
VERSION=2.2.2
55
TARGET_DIRECTORY=Output
66
APPLE_DEVELOPER_CERTIFICATE_ID=FakeID
77
ROFF_DIR=../../docs/Roff

scripts/Windows/installer.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "Kathara"
5-
#define MyAppVersion "2.2.1"
5+
#define MyAppVersion "2.2.2"
66
#define MyAppPublisher "Kathara Team"
77
#define MyAppURL "https://www.kathara.org"
88
#define MyAppExeName "kathara.exe"

src/Resources/manager/docker/DockerMachine.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,9 @@ def undeploy(self, lab_hash, selected_machines=None):
280280

281281
items = utils.chunk_list(machines, pool_size)
282282

283-
progress_bar = Bar("Deleting machines...", max=len(machines))
283+
progress_bar = Bar("Deleting machines...", max=len(machines) if not selected_machines
284+
else len(selected_machines)
285+
)
284286

285287
for chunk in items:
286288
machines_pool.map(func=partial(self._undeploy_machine, selected_machines, True, progress_bar),

src/Resources/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CURRENT_VERSION = "2.2.1"
1+
CURRENT_VERSION = "2.2.2"
22

33

44
def parse(version):

0 commit comments

Comments
 (0)