Skip to content

Commit a371f3d

Browse files
committed
bumped version and added version log message
1 parent c126d48 commit a371f3d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.21)
22

33
# Set project name and version
44
set(PLUGIN_NAME TerrainHelper)
5-
set(PLUGIN_VERSION 0.3.0)
5+
set(PLUGIN_VERSION 0.3.1)
66
project(${PLUGIN_NAME} VERSION ${PLUGIN_VERSION} LANGUAGES CXX)
77

88
# Set compile defitions

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ void MessageHandler(SKSE::MessagingInterface::Message* a_msg) {
186186
extern "C" DLLEXPORT bool SKSEAPI SKSEPlugin_Load(const SKSE::LoadInterface* skse) {
187187
SKSE::Init(skse);
188188
SetupLog();
189-
spdlog::info("Plugin loaded");
189+
spdlog::info("{} version {} loaded", PLUGIN_NAME, PLUGIN_VERSION);
190190

191191
// Register messaging interface
192192
auto messaging = SKSE::GetMessagingInterface();

0 commit comments

Comments
 (0)