Skip to content

Commit 11ad8c6

Browse files
Track'n'Truck DevsTrack'n'Truck Devs
authored andcommitted
releas v1.1.9
1 parent a26ea0d commit 11ad8c6

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

CMakeLists.txt

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

44
# Define our project.
5-
project(SPF VERSION 1.1.8 LANGUAGES CXX)
5+
project(SPF VERSION 1.1.9 LANGUAGES CXX)
66

77
# Enable generation of compile_commands.json, which is necessary for IWYU.
88
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)

include/SPF/Config/FrameworkManifest.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ inline const ManifestData& GetFrameworkManifestData() {
2121
.info =
2222
{
2323
.name = "SPF Framework",
24-
.version = "1.1.8",
24+
.version = "1.1.9",
2525
.author = "Track'n'Truck Devs",
2626
.descriptionKey = "description.detailed", // key in the translation file
2727
.descriptionLiteral = "", // if there is no translation, you can write a description here

plugins/ExamplePlugin/ExamplePlugin.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,13 @@ void BuildManifest(SPF_Manifest_Builder_Handle* h, const SPF_Manifest_Builder_AP
5959

6060
// `version`: The version of your plugin. It's a best practice to follow Semantic Versioning (semver.org).
6161
// Example: "1.0.0", "2.1.0-beta", etc.
62-
api->Info_SetVersion(h, "1.1.8");
62+
api->Info_SetVersion(h, "1.1.9");
6363

6464
// Recommended to fill in
6565
// The minimum SPF Framework version required for this plugin to work correctly (e.g. "1.0.6").
6666
// If the user's framework version is lower than this, the plugin will be disabled. And a warning will be shown
6767
// This prevents crashes due to API changes.
68-
api->Info_SetMinFrameworkVersion(h, "1.1.8");
68+
api->Info_SetMinFrameworkVersion(h, "1.1.9");
6969

7070
// `author`: (Optional) Your name or your organization's name.
7171
api->Info_SetAuthor(h, "Your Name");

0 commit comments

Comments
 (0)