Skip to content
This repository was archived by the owner on Dec 1, 2021. It is now read-only.

Commit 488d263

Browse files
committed
Version bump
1 parent c96c1fc commit 488d263

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

include/aegis/version.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
#pragma once
1111

1212
#if !defined(AEGIS_VERSION_LONG)
13-
#define AEGIS_VERSION_LONG 0x00020500
14-
#define AEGIS_VERSION_SHORT 020500
15-
#define AEGIS_VERSION_TEXT "aegis.cpp 2.5.0 2019/11/21"
13+
#define AEGIS_VERSION_LONG 0x00020600
14+
#define AEGIS_VERSION_SHORT 020600
15+
#define AEGIS_VERSION_TEXT "aegis.cpp 2.6.0 2020/08/02"
1616

1717
#define AEGIS_VERSION_MAJOR ((AEGIS_VERSION_LONG & 0x00ff0000) >> 16)
1818
#define AEGIS_VERSION_MINOR ((AEGIS_VERSION_LONG & 0x0000ff00) >> 8)

install-deps.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44

55
echo "This install script only works with GCC at the moment. Support for other compilers may come later."
66

7-
if [ -z $CXX ]; then echo "CXX not set. Defaulting to GCC."; CXX=gcc; else echo "CXX set to '$CXX'"; fi
7+
if [ -z $CXX ]; then echo "CXX not set. Defaulting to GCC."; CXX=g++; else echo "CXX set to '$CXX'"; fi
88

99

1010
currentver="$(${CXX} -dumpversion)"
@@ -40,7 +40,7 @@ fi
4040
if [ ! \( -f "/usr/local/include/spdlog/spdlog.h" -a -f "/usr/include/spdlog/spdlog.h" \) ]; then
4141
echo "Spdlog not found."
4242
echo "Configuring Spdlog."
43-
(cd lib/spdlog && mkdir -p build && cd build && cmake -DSPDLOG_BUILD_TESTING=OFF .. && make install)
43+
(cd lib/spdlog && mkdir -p build && cd build && cmake -DSPDLOG_BUILD_TESTS=OFF .. && make install)
4444
fi
4545

4646
if [ ! \( -f "/usr/local/include/websocketpp/version.hpp" -a -f "/usr/include/websocketpp/version.hpp" \) ]; then

0 commit comments

Comments
 (0)