Skip to content

Commit 5cb8c02

Browse files
Track'n'Truck DevsTrack'n'Truck Devs
authored andcommitted
releas v.1.1.6
1 parent f7fc5cd commit 5cb8c02

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.5 LANGUAGES CXX)
5+
project(SPF VERSION 1.1.6 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.5",
24+
.version = "1.1.6",
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
@@ -53,13 +53,13 @@ void BuildManifest(SPF_Manifest_Builder_Handle* h, const SPF_Manifest_Builder_AP
5353

5454
// `version`: The version of your plugin. It's a best practice to follow Semantic Versioning (semver.org).
5555
// Example: "1.0.0", "2.1.0-beta", etc.
56-
api->Info_SetVersion(h, "1.1.5");
56+
api->Info_SetVersion(h, "1.1.6");
5757

5858
// Recommended to fill in
5959
// The minimum SPF Framework version required for this plugin to work correctly (e.g. "1.0.6").
6060
// If the user's framework version is lower than this, the plugin will be disabled. And a warning will be shown
6161
// This prevents crashes due to API changes.
62-
api->Info_SetMinFrameworkVersion(h, "1.1.5");
62+
api->Info_SetMinFrameworkVersion(h, "1.1.6");
6363

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

0 commit comments

Comments
 (0)