Skip to content

Commit a957b80

Browse files
committed
bump version to 5.2
1 parent d2d5fc6 commit a957b80

11 files changed

Lines changed: 15 additions & 13 deletions

EidosScribe/EidosConsoleTextView.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ - (void)showWelcomeMessage
199199
NSString *versionString = [NSString stringWithFormat:@"Eidos version %s\n\nBy Benjamin C. Haller (", EIDOS_VERSION_STRING];
200200
NSAttributedString *welcomeString1 = [[NSAttributedString alloc] initWithString:versionString attributes:outputAttrs]; // EIDOS VERSION
201201
NSAttributedString *welcomeString2 = [[NSAttributedString alloc] initWithString:@"http://benhaller.com/" attributes:[NSDictionary eidosBaseAttributes:outputAttrs withHyperlink:@"http://benhaller.com/"]];
202-
NSAttributedString *welcomeString3 = [[NSAttributedString alloc] initWithString:@").\nCopyright (c) 2016–2025 Benjamin C. Haller.\nAll rights reserved.\n\nEidos is free software with ABSOLUTELY NO WARRANTY.\nType license() for license and distribution details.\n\nGo to " attributes:outputAttrs];
202+
NSAttributedString *welcomeString3 = [[NSAttributedString alloc] initWithString:@").\nCopyright (c) 2016–2026 Benjamin C. Haller.\nAll rights reserved.\n\nEidos is free software with ABSOLUTELY NO WARRANTY.\nType license() for license and distribution details.\n\nGo to " attributes:outputAttrs];
203203
NSAttributedString *welcomeString4 = [[NSAttributedString alloc] initWithString:@"https://github.com/MesserLab/SLiM" attributes:[NSDictionary eidosBaseAttributes:outputAttrs withHyperlink:@"https://github.com/MesserLab/SLiM"]];
204204
NSAttributedString *welcomeString5 = [[NSAttributedString alloc] initWithString:@" for source\ncode, documentation, examples, and other information.\n\nWelcome to Eidos!\n\n-----------------------------------------------------\n\n" attributes:outputAttrs];
205205

EidosScribe/EidosScribe-Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>4.1</string>
20+
<string>4.2</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>

EidosScribe/EidosScribe_multi-Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>4.1</string>
20+
<string>4.2</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>

QtSLiM/QtSLiM.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ QMAKE_INFO_PLIST = QtSLiM_Info.plist
2121
ICON = QtSLiM_AppIcon.icns
2222
QMAKE_TARGET_BUNDLE_PREFIX = "org.messerlab"
2323
QMAKE_BUNDLE = "SLiMgui" # This governs the location of our prefs, which we keep under org.messerlab.SLiMgui
24-
VERSION = 5.1
24+
VERSION = 5.2
2525

2626
docIconFiles.files = $$PWD/QtSLiM_DocIcon.icns
2727
docIconFiles.path = Contents/Resources

QtSLiM/QtSLiMConsoleTextEdit.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ void QtSLiMConsoleTextEdit::showWelcome(void)
100100
QString welcomeMessage;
101101
welcomeMessage = welcomeMessage + "Eidos version " + EIDOS_VERSION_STRING + NEWLINE + NEWLINE; // EIDOS VERSION
102102
welcomeMessage += "By Benjamin C. Haller and Philipp W. Messer." + NEWLINE;
103-
welcomeMessage += "Copyright (c) 2016–2025 Benjamin C. Haller." + NEWLINE;
103+
welcomeMessage += "Copyright (c) 2016–2026 Benjamin C. Haller." + NEWLINE;
104104
welcomeMessage += "All rights reserved." + NEWLINE + NEWLINE;
105105
welcomeMessage += "Eidos is free software with ABSOLUTELY NO WARRANTY." + NEWLINE;
106106
welcomeMessage += "Type license() for license and distribution details." + NEWLINE + NEWLINE;

SLiMgui/SLiMguiLegacy-Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
<key>CFBundlePackageType</key>
8989
<string>APPL</string>
9090
<key>CFBundleShortVersionString</key>
91-
<string>5.1</string>
91+
<string>5.2</string>
9292
<key>CFBundleSignature</key>
9393
<string>????</string>
9494
<key>CFBundleVersion</key>

SLiMgui/SLiMguiLegacy_multi-Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
<key>CFBundlePackageType</key>
8989
<string>APPL</string>
9090
<key>CFBundleShortVersionString</key>
91-
<string>5.1</string>
91+
<string>5.2</string>
9292
<key>CFBundleSignature</key>
9393
<string>????</string>
9494
<key>CFBundleVersion</key>

VERSIONS

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ Note that not every commit will be logged here; that is what the Github commit h
66

77

88
development head (in the master branch):
9+
10+
11+
version 5.2 (Eidos version 4.2):
912
add cppcheck support in our cmake config, for development testing purposes
1013
speed up the SpatialMap smooth() method in 2D without periodicity, since this is important for the Chevy et al. competition algorithm
1114
add Plot method setBorderless() for making plots without border annotations -- no axes, ticks, labels
@@ -56,7 +59,6 @@ development head (in the master branch):
5659
fix a bug (a regression, introduced in SLiM 3.7!) in printing of large float values; ".0" is sometimes shown erroneously
5760
fix #598: in Xcode and Qt Creator, force AVX2 and FMA on for x86_64 builds (true since 2013), and NEON on for ARM64 builds (true since forever); this is pretty safe, and makes SIMD/SLEEF work even without the CMake magic for them
5861

59-
6062
version 5.1 (Eidos version 4.1):
6163
add recipe 16.11, life-long monogamous mating
6264
add the ability to suppress the header line of a LogFile, with a new [logical$ header = T] parameter to createLogFile() (#516), and adding [Nl$ header = NULL] for setFilePath() (#516)

core/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ static void PrintUsageAndDie(bool p_print_header, bool p_print_full_usage)
8181
SLIM_OUTSTREAM << std::endl;
8282

8383
SLIM_OUTSTREAM << "SLiM is a product of the Messer Lab, http://messerlab.org/" << std::endl;
84-
SLIM_OUTSTREAM << "Copyright 2013-2025 Benjamin C. Haller. All rights reserved." << std::endl << std::endl;
84+
SLIM_OUTSTREAM << "Copyright 2013-2026 Benjamin C. Haller. All rights reserved." << std::endl << std::endl;
8585
SLIM_OUTSTREAM << "By Benjamin C. Haller, http://benhaller.com/, and Philipp Messer." << std::endl << std::endl;
8686

8787
SLIM_OUTSTREAM << "---------------------------------------------------------------------------------" << std::endl << std::endl;

core/slim_globals.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ class SLiMEidosBlock;
4444

4545

4646
// SLiM version: see also Info.plist and QtSLiM.pro
47-
#define SLIM_VERSION_STRING ("5.1")
48-
#define SLIM_VERSION_FLOAT (5.1)
47+
#define SLIM_VERSION_STRING ("5.2")
48+
#define SLIM_VERSION_FLOAT (5.2)
4949

5050

5151
// This should be called once at startup to give SLiM an opportunity to initialize static state

0 commit comments

Comments
 (0)