Skip to content

Commit

Permalink
updated ChangeLog
Browse files Browse the repository at this point in the history
  • Loading branch information
treefrogframework committed Jan 2, 2023
1 parent 133e0d4 commit b98de98
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# ChangeLog

## 2.6.0
- Implemented in-memory KVS for cache system.
- Added a link option for Glog shared library.
- Fix bugs of macros for command line interface.
- Updated LZ4 to v1.9.4.

## 2.5.0
- Implemented flushResponse() function to continue the process after sending a response.
- Updated glog to v0.6.0
Expand Down
2 changes: 1 addition & 1 deletion src/tglobal.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once
constexpr auto TF_VERSION_STR = "2.6.0";
constexpr auto TF_VERSION_NUMBER = 0x020600;
constexpr auto TF_SRC_REVISION = 2747;
constexpr auto TF_SRC_REVISION = 2749;

#include <QMetaType>
#include <QIODevice>
Expand Down
5 changes: 3 additions & 2 deletions update_rev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ function format
echo "$(printf %x $1)"
}

sed -i -e "s/auto TF_VERSION_STR.*/auto TF_VERSION_STR = \"${TF_VER_MAJ}\.${TF_VER_MIN}\.${TF_VER_PAT}\";/" $FILE_PATH
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
sed -i -e "s/auto TF_VERSION_STR = \S*/auto TF_VERSION_STR = \"${TF_VER_MAJ}\.${TF_VER_MIN}\.${TF_VER_PAT}\";/" $FILE_PATH
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
sed -i -e "s/AssemblyVersionAttribute(\".*\")/AssemblyVersionAttribute(\"${TF_VER_MAJ}\.${TF_VER_MIN}\.${TF_VER_PAT}\")/" installer/treefrog-setup/treefrog-setup/AssemblyInfo.cpp
sed -i -e "s/set VERSION=\S*/set VERSION=${TF_VER_MAJ}\.${TF_VER_MIN}\.${TF_VER_PAT}/" installer/create_installer.bat

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

Expand Down

0 comments on commit b98de98

Please sign in to comment.