Skip to content

Commit 4f6a944

Browse files
authored
Merge pull request #245 from tetengo/v1.6.1-release
Change the version to 1.6.1 #244
2 parents 615608b + 28cb19f commit 4f6a944

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/windows-visualcpp.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
branches: [ master ]
1414

1515
env:
16-
TETENGO_VER: 1.6.0
16+
TETENGO_VER: 1.6.1
1717
CONCURRENT_BUILD: 4
1818
BOOST_VER: 1_79_0
1919
BOOST_VER_DOT: 1.79.0

Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = tetengo
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 1.6.0
41+
PROJECT_NUMBER = 1.6.1
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
tetengo 1.6.0
1+
tetengo 1.6.1
22
=============
33

44
[TOC]

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#### General ####
55
AC_PREREQ([2.69])
6-
AC_INIT([tetengo], [1.6.0], [https://github.com/tetengo])
6+
AC_INIT([tetengo], [1.6.1], [https://github.com/tetengo])
77
AC_CONFIG_SRCDIR([precompiled/precompiled.h])
88
AC_CONFIG_HEADERS([config.h])
99
AM_INIT_AUTOMAKE([--warnings=no-portability])

executable/setup/res/setup.rc

+4-4
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ END
5151
//
5252

5353
VS_VERSION_INFO VERSIONINFO
54-
FILEVERSION 1,6,0,0
55-
PRODUCTVERSION 1,6,0,0
54+
FILEVERSION 1,6,1,0
55+
PRODUCTVERSION 1,6,1,0
5656
FILEFLAGSMASK 0x3fL
5757
#ifdef _DEBUG
5858
FILEFLAGS 0x1L
@@ -69,12 +69,12 @@ BEGIN
6969
BEGIN
7070
VALUE "CompanyName", "kaoru"
7171
VALUE "FileDescription", "An install bootstrapper."
72-
VALUE "FileVersion", "1.6.0"
72+
VALUE "FileVersion", "1.6.1"
7373
VALUE "InternalName", "setup.exe"
7474
VALUE "LegalCopyright", "Copyright (C) 2019-2022 kaoru"
7575
VALUE "OriginalFilename", "setup.exe"
7676
VALUE "ProductName", "tetengo"
77-
VALUE "ProductVersion", "1.6.0"
77+
VALUE "ProductVersion", "1.6.1"
7878
END
7979
END
8080
BLOCK "VarFileInfo"

setup/installer/main.wxs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Copyright (C) 2019-2022 kaoru https://www.tetengo.org/
55
-->
66
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
7-
<Product Name="tetengo 1.6.0" Version="1.6.0" Id="ECFFF0EA-2AC4-4E07-B53C-86F90FB27EC9" UpgradeCode="952185DF-9262-470C-959A-6CB9FE2182B5" Language="1033" Codepage="1252" Manufacturer="kaoru">
7+
<Product Name="tetengo 1.6.1" Version="1.6.1" Id="E8C65DFA-2F4D-43CE-8909-B8D5DC321D30" UpgradeCode="952185DF-9262-470C-959A-6CB9FE2182B5" Language="1033" Codepage="1252" Manufacturer="kaoru">
88
<Package Id="*" Description="tetengo Installer" Manufacturer="kaoru" InstallerVersion="500" Languages="1033" Compressed="yes" SummaryCodepage="1252" />
99
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
1010

0 commit comments

Comments
 (0)