Skip to content

Commit b98de98

Browse files
updated ChangeLog
1 parent 133e0d4 commit b98de98

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# ChangeLog
22

3+
## 2.6.0
4+
- Implemented in-memory KVS for cache system.
5+
- Added a link option for Glog shared library.
6+
- Fix bugs of macros for command line interface.
7+
- Updated LZ4 to v1.9.4.
8+
39
## 2.5.0
410
- Implemented flushResponse() function to continue the process after sending a response.
511
- Updated glog to v0.6.0

src/tglobal.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#pragma once
22
constexpr auto TF_VERSION_STR = "2.6.0";
33
constexpr auto TF_VERSION_NUMBER = 0x020600;
4-
constexpr auto TF_SRC_REVISION = 2747;
4+
constexpr auto TF_SRC_REVISION = 2749;
55

66
#include <QMetaType>
77
#include <QIODevice>

update_rev.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@ function format
1313
echo "$(printf %x $1)"
1414
}
1515

16-
sed -i -e "s/auto TF_VERSION_STR.*/auto TF_VERSION_STR = \"${TF_VER_MAJ}\.${TF_VER_MIN}\.${TF_VER_PAT}\";/" $FILE_PATH
17-
sed -i -e "s/auto TF_VERSION_NUMBER.*/auto TF_VERSION_NUMBER = 0x$(format ${TF_VER_MAJ})$(format ${TF_VER_MIN})$(format ${TF_VER_PAT});/" $FILE_PATH
16+
sed -i -e "s/auto TF_VERSION_STR = \S*/auto TF_VERSION_STR = \"${TF_VER_MAJ}\.${TF_VER_MIN}\.${TF_VER_PAT}\";/" $FILE_PATH
17+
sed -i -e "s/auto TF_VERSION_NUMBER = \S*/auto TF_VERSION_NUMBER = 0x$(format ${TF_VER_MAJ})$(format ${TF_VER_MIN})$(format ${TF_VER_PAT});/" $FILE_PATH
1818
sed -i -e "s/AssemblyVersionAttribute(\".*\")/AssemblyVersionAttribute(\"${TF_VER_MAJ}\.${TF_VER_MIN}\.${TF_VER_PAT}\")/" installer/treefrog-setup/treefrog-setup/AssemblyInfo.cpp
19+
sed -i -e "s/set VERSION=\S*/set VERSION=${TF_VER_MAJ}\.${TF_VER_MIN}\.${TF_VER_PAT}/" installer/create_installer.bat
1920

2021
[ which git >/dev/null 2>&1 ] && exit 1
2122

0 commit comments

Comments
 (0)