Skip to content

Commit d985c54

Browse files
committed
version - bump to v4.4 beta
1 parent 77732f8 commit d985c54

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

app/gui/qt/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ endif()
99
project("Sonic Pi"
1010
LANGUAGES CXX C
1111
DESCRIPTION "A code-based music creation and performance tool"
12-
VERSION 4.3.0
12+
VERSION 4.4.0
1313
HOMEPAGE_URL "https://sonic-pi.net"
1414
)
1515

app/gui/qt/html/doc.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
code_as <span class="highlight">:art</span></pre>
1616
</p>
1717

18-
<p class="version">v4.3.0</p>
18+
<p class="version">v4.4.0-beta</p>
1919

2020
</center>
2121

app/gui/qt/html/info.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@
2929

3030
<br/>
3131

32-
<p class="version">v4.3.0</p>
32+
<p class="version">v4.4.0-beta</p>
3333
</center>
3434
</body>

app/gui/qt/mainwindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ MainWindow::MainWindow(QApplication& app, QSplashScreen* splash)
131131
show_rec_icon_a = false;
132132
restoreDocPane = false;
133133
focusMode = false;
134-
version = "4.3.0";
134+
version = "4.4.0-beta";
135135
latest_version = "";
136136
version_num = 0;
137137
latest_version_num = 0;

app/server/ruby/lib/sonicpi/runtime.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1400,8 +1400,8 @@ def initialize(ports, msg_queue, user_methods)
14001400
@settings = Config::Settings.new(Paths.system_cache_store_path)
14011401

14021402
# Temporarily fix beta version:
1403-
@version = Version.new(4, 3, 0)
1404-
# @version = Version.new(4, 2, 0, gh_short)
1403+
# @version = Version.new(4, 3, 0)
1404+
@version = Version.new(4, 4, 0, gh_short)
14051405

14061406
@server_version = __server_version
14071407
@life_hooks = LifeCycleHooks.new

0 commit comments

Comments
 (0)