Skip to content

Commit f7180d8

Browse files
committed
ci: bump version to 1.10.0 #354
Update version number across CI configuration, documentation, build scripts, and installer files. Updated TETENGO_VER in windows-visualcpp.yml from 1.9.0 to 1.10.0 Updated PROJECT_NUMBER in Doxyfile from 1.9.0 to 1.10.0 Updated version headers in README.md, configure.ac, setup.rc, and main.wxs to 1.10.0 Updated WiX Package attributes including new ProductCode for 1.10.0 release
1 parent 5a2ba1b commit f7180d8

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/windows-visualcpp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
branches: [ main ]
1414

1515
env:
16-
TETENGO_VER: 1.9.0
16+
TETENGO_VER: 1.10.0
1717
CONCURRENT_BUILD: 4
1818
BOOST_VER: 1_91_0
1919
BOOST_VER_DOT: 1.91.0

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ PROJECT_NAME = tetengo
4848
# could be handy for archiving the generated documentation or if some version
4949
# control system is used.
5050

51-
PROJECT_NUMBER = 1.9.0
51+
PROJECT_NUMBER = 1.10.0
5252

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
tetengo 1.9.0
1+
tetengo 1.10.0
22
=============
33

44
[TOC]

configure.ac

Lines changed: 1 addition & 1 deletion
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.9.0], [https://github.com/tetengo/tetengo.cpp])
6+
AC_INIT([tetengo], [1.10.0], [https://github.com/tetengo/tetengo.cpp])
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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ END
5151
//
5252

5353
VS_VERSION_INFO VERSIONINFO
54-
FILEVERSION 1,9,0,0
55-
PRODUCTVERSION 1,9,0,0
54+
FILEVERSION 1,10,0,0
55+
PRODUCTVERSION 1,10,0,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.9.0"
72+
VALUE "FileVersion", "1.10.0"
7373
VALUE "InternalName", "setup.exe"
7474
VALUE "LegalCopyright", "Copyright (C) 2019-2026 kaoru"
7575
VALUE "OriginalFilename", "setup.exe"
7676
VALUE "ProductName", "tetengo"
77-
VALUE "ProductVersion", "1.9.0"
77+
VALUE "ProductVersion", "1.10.0"
7878
END
7979
END
8080
BLOCK "VarFileInfo"

setup/installer/main.wxs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Copyright (C) 2019-2026 kaoru https://www.tetengo.org/
44
-->
55
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:ui="http://wixtoolset.org/schemas/v4/wxs/ui">
6-
<Package Name="tetengo 1.9.0" Version="1.9.0" UpgradeCode="952185DF-9262-470C-959A-6CB9FE2182B5" Language="$(env.LANGUAGE)" Codepage="$(env.CODEPAGE)" Manufacturer="kaoru" ProductCode="B0067C08-2851-492F-9F65-938E004EFDBA">
6+
<Package Name="tetengo 1.10.0" Version="1.10.0" UpgradeCode="952185DF-9262-470C-959A-6CB9FE2182B5" Language="$(env.LANGUAGE)" Codepage="$(env.CODEPAGE)" Manufacturer="kaoru" ProductCode="5FB4BF4D-90DE-40AB-A069-294EDBF3D276">
77
<SummaryInformation Description="tetengo Installer" Manufacturer="kaoru" />
88
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
99

0 commit comments

Comments
 (0)