Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/windows-visualcpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
branches: [ master ]

env:
TETENGO_VER: 1.6.0
TETENGO_VER: 1.6.1
CONCURRENT_BUILD: 4
BOOST_VER: 1_79_0
BOOST_VER_DOT: 1.79.0
Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = tetengo
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 1.6.0
PROJECT_NUMBER = 1.6.1

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
tetengo 1.6.0
tetengo 1.6.1
=============

[TOC]
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#### General ####
AC_PREREQ([2.69])
AC_INIT([tetengo], [1.6.0], [https://github.com/tetengo])
AC_INIT([tetengo], [1.6.1], [https://github.com/tetengo])
AC_CONFIG_SRCDIR([precompiled/precompiled.h])
AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE([--warnings=no-portability])
Expand Down
8 changes: 4 additions & 4 deletions executable/setup/res/setup.rc
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,6,0,0
PRODUCTVERSION 1,6,0,0
FILEVERSION 1,6,1,0
PRODUCTVERSION 1,6,1,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -69,12 +69,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "kaoru"
VALUE "FileDescription", "An install bootstrapper."
VALUE "FileVersion", "1.6.0"
VALUE "FileVersion", "1.6.1"
VALUE "InternalName", "setup.exe"
VALUE "LegalCopyright", "Copyright (C) 2019-2022 kaoru"
VALUE "OriginalFilename", "setup.exe"
VALUE "ProductName", "tetengo"
VALUE "ProductVersion", "1.6.0"
VALUE "ProductVersion", "1.6.1"
END
END
BLOCK "VarFileInfo"
Expand Down
2 changes: 1 addition & 1 deletion setup/installer/main.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Copyright (C) 2019-2022 kaoru https://www.tetengo.org/
-->
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<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">
<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">
<Package Id="*" Description="tetengo Installer" Manufacturer="kaoru" InstallerVersion="500" Languages="1033" Compressed="yes" SummaryCodepage="1252" />
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />

Expand Down