From d372a2bc18ac82e7f11c872b163982c00713968d Mon Sep 17 00:00:00 2001 From: Lianming Du Date: Mon, 31 Aug 2020 23:56:31 +0800 Subject: [PATCH] bump to v1.3.2 --- build_rpmdeb.sh | 3 +++ setup/win.iss | 2 +- src/config.py | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/build_rpmdeb.sh b/build_rpmdeb.sh index 19b5d65..d54deee 100644 --- a/build_rpmdeb.sh +++ b/build_rpmdeb.sh @@ -33,5 +33,8 @@ files: " echo "$nfpmconfig" > nfpm.yaml +# copy logo file +cp ../src/icons/krait_logo.png . + ./nfpm pkg -t Krait-v${version}-amd64.deb ./nfpm pkg -t Krait-v${version}-amd64.rpm \ No newline at end of file diff --git a/setup/win.iss b/setup/win.iss index 01fad84..76f20fb 100644 --- a/setup/win.iss +++ b/setup/win.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "Krait" -#define MyAppVersion "1.3.1" +#define MyAppVersion "1.3.2" #define MyAppPublisher "Lianming Du" #define MyAppURL "https://github.com/lmdu/krait" #define MyAppExeName "Krait.exe" diff --git a/src/config.py b/src/config.py index 518b46e..2b73c20 100644 --- a/src/config.py +++ b/src/config.py @@ -2,9 +2,9 @@ import os import appdirs -VERSION = "1.3.1" +VERSION = "1.3.2" -BUILD = '20200829' +BUILD = '20200901' ROOT_PATH = os.path.abspath(os.path.dirname(__file__))