Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version numbers for 0.10.6-alpha #9727

Merged
merged 5 commits into from
Jan 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ set_property(GLOBAL PROPERTY USE_FOLDERS ON)
set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT EndlessSky)
set(CMAKE_VS_JUST_MY_CODE_DEBUGGING ON)

project("Endless Sky" VERSION 0.10.5
project("Endless Sky" VERSION 0.10.6
DESCRIPTION "Space exploration, trading, and combat game."
HOMEPAGE_URL https://endless-sky.github.io/
LANGUAGES CXX)
Expand Down
2 changes: 1 addition & 1 deletion credits.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Welcome to Endless Sky!
version 0.10.5
version 0.10.5-alpha

The player's manual and other
resources are available at:
Expand Down
2 changes: 1 addition & 1 deletion endless-sky.6
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH endless\-sky 6 "27 Jan 2024" "ver. 0.10.5" "Endless Sky"
.TH endless\-sky 6 "27 Jan 2024" "ver. 0.10.5-alpha" "Endless Sky"

.SH NAME
endless\-sky \- a space exploration and combat game.
Expand Down
2 changes: 1 addition & 1 deletion resources/EndlessSky-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.10.5</string>
<string>0.10.6</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ void PrintHelp()
void PrintVersion()
{
cerr << endl;
cerr << "Endless Sky ver. 0.10.5" << endl;
cerr << "Endless Sky ver. 0.10.5-alpha" << endl;
cerr << "License GPLv3+: GNU GPL version 3 or later: <https://gnu.org/licenses/gpl.html>" << endl;
cerr << "This is free software: you are free to change and redistribute it." << endl;
cerr << "There is NO WARRANTY, to the extent permitted by law." << endl;
Expand Down
Loading