Update made automatically due to pressing build

This commit is contained in:
Li 2022-05-08 13:13:57 +12:00
parent 76da976e68
commit 89fcf97724
5 changed files with 8 additions and 8 deletions

View file

@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.6.2.16")]
[assembly: AssemblyFileVersion("1.6.2.16")]
[assembly: AssemblyVersion("1.6.2.17")]
[assembly: AssemblyFileVersion("1.6.2.17")]

View file

@ -1,5 +1,5 @@
Package: hisp
Version: 1.6.3
Version: 1.6.2.17
Depends: coreutils,systemd,mariadb-server,libsqlite3-dev,zlib1g-dev,libicu-dev,libkrb5-dev
Maintainer: Li
Homepage: https://islehorse.com

View file

@ -30,5 +30,5 @@ using System.Runtime.InteropServices;
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.6.2.16")]
[assembly: AssemblyFileVersion("1.6.2.16")]
[assembly: AssemblyVersion("1.6.2.17")]
[assembly: AssemblyFileVersion("1.6.2.17")]

View file

@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.6.2.16")]
[assembly: AssemblyFileVersion("1.6.2.16")]
[assembly: AssemblyVersion("1.6.2.17")]
[assembly: AssemblyFileVersion("1.6.2.17")]

View file

@ -63,5 +63,5 @@ control_file = os.path.join("HISPd", "Resources", "DEBIAN", "control")
lines = open(control_file, "rb").readlines()
for i in range(0,len(lines)):
if lines[i].startswith(b"Version: "):
lines[i] = b"Version: "+bytes(commit_tag.replace("v", ""), "UTF-8")
lines[i] = b"Version: "+bytes(commit_tag.replace("v", "")+b"\n", "UTF-8")
open(control_file, "wb").writelines(lines)