[education/rkward] /: Bump version to enforce R package changes

Thomas Friedrichsmeier null at kde.org
Mon Jun 24 22:13:02 BST 2024


Git commit e825246d9de1cb39d08eadef4db8307704ca040a by Thomas Friedrichsmeier.
Committed on 23/06/2024 at 15:03.
Pushed by tfry into branch 'master'.

Bump version to enforce R package changes

M  +1    -1    VERSION.cmake
M  +3    -2    rkward/autotests/core_test.cpp
M  +1    -1    rkward/rbackend/rpackages/rkward/DESCRIPTION

https://invent.kde.org/education/rkward/-/commit/e825246d9de1cb39d08eadef4db8307704ca040a

diff --git a/VERSION.cmake b/VERSION.cmake
index 8a8bf3f7c..dba607675 100644
--- a/VERSION.cmake
+++ b/VERSION.cmake
@@ -1,3 +1,3 @@
 # DO NOT CHANGE THIS FILE MANUALLY!
 # It will be overwritten by scripts/set_dist_version.sh
-SET(RKVERSION_NUMBER 0.7.9z+0.8.0+devel1)
+SET(RKVERSION_NUMBER 0.7.9z+0.8.0+devel2)
diff --git a/rkward/autotests/core_test.cpp b/rkward/autotests/core_test.cpp
index a01b7338f..de8a8575f 100644
--- a/rkward/autotests/core_test.cpp
+++ b/rkward/autotests/core_test.cpp
@@ -434,13 +434,14 @@ private Q_SLOTS:
 		f.write("plot(1,1)\n"); // Using a plot(), here is interesting in that it a) allows a plot preview b) a plot will also be generated, and
 		                        // immediately discarded for R console previews, which used to be prone to crashing
 		f.close();
-		auto w = RKWorkplace::mainWorkplace()->openScriptEditor(QUrl::fromLocalFile(f.fileName()));
+		const auto w = RKWorkplace::mainWorkplace()->openScriptEditor(QUrl::fromLocalFile(f.fileName()));
+		QVERIFY(w != nullptr);
 		auto wins = RKWorkplace::mainWorkplace()->getObjectList(RKMDIWindow::CommandEditorWindow);
 		QCOMPARE(wins.size(), 1);
 		auto win = qobject_cast<RKCommandEditorWindow*>(wins[0]);
 		QVERIFY(win == w);
 		// opening the same url again shall re-use the window
-		auto w2 = RKWorkplace::mainWorkplace()->openScriptEditor(QUrl::fromLocalFile(f.fileName()));
+		const auto w2 = RKWorkplace::mainWorkplace()->openScriptEditor(QUrl::fromLocalFile(f.fileName()));
 		QVERIFY(win == w2);
 
 		// pretty basic check: don't crash or assert on switching between previews
diff --git a/rkward/rbackend/rpackages/rkward/DESCRIPTION b/rkward/rbackend/rpackages/rkward/DESCRIPTION
index 617ee7b59..14a142fc1 100755
--- a/rkward/rbackend/rpackages/rkward/DESCRIPTION
+++ b/rkward/rbackend/rpackages/rkward/DESCRIPTION
@@ -19,7 +19,7 @@ Authors at R: c(person(given="Thomas", family="Friedrichsmeier",
         role=c("aut")), person(family="the RKWard team",
         email="rkward-devel at kde.org", role=c("cre","aut")))
 Version: 0.8.0
-Date: 2024-05-18
+Date: 2024-06-23
 RoxygenNote: 7.2.2
 Collate: 
     'base_overrides.R'



More information about the rkward-tracker mailing list