From 8d1ba2ba2ed9c79499c29693013ca063583852dd Mon Sep 17 00:00:00 2001 From: adazem009 <68537469+adazem009@users.noreply.github.com> Date: Sat, 28 Sep 2024 23:11:10 +0200 Subject: [PATCH 1/2] TextBubble: Add missing export --- include/scratchcpp/textbubble.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/scratchcpp/textbubble.h b/include/scratchcpp/textbubble.h index ce5395f1..baec8945 100644 --- a/include/scratchcpp/textbubble.h +++ b/include/scratchcpp/textbubble.h @@ -11,7 +11,7 @@ namespace libscratchcpp class TextBubblePrivate; /*! \brief The TextBubble class represents a text bubble created using say or think block. */ -class TextBubble : public Drawable +class LIBSCRATCHCPP_EXPORT TextBubble : public Drawable { public: enum class Type From 654418270f90d5f80af77c6819e620b52eb161e3 Mon Sep 17 00:00:00 2001 From: adazem009 <68537469+adazem009@users.noreply.github.com> Date: Sat, 28 Sep 2024 23:32:28 +0200 Subject: [PATCH 2/2] Set version to 0.11.1 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 20c14a01..2ccc10b8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.14) -project(libscratchcpp VERSION 0.11.0 LANGUAGES C CXX) +project(libscratchcpp VERSION 0.11.1 LANGUAGES C CXX) set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_CXX_STANDARD 17)