Skip to content

Commit 834f9b8

Browse files
committed
increment version to 4.2.2
1 parent 5a1d519 commit 834f9b8

File tree

8 files changed

+12
-10
lines changed

8 files changed

+12
-10
lines changed

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>3.2.1</string>
20+
<string>3.2.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>3.2.1</string>
20+
<string>3.2.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
@@ -18,7 +18,7 @@ QMAKE_INFO_PLIST = QtSLiM_Info.plist
1818
ICON = QtSLiM_AppIcon.icns
1919
QMAKE_TARGET_BUNDLE_PREFIX = "org.messerlab"
2020
QMAKE_BUNDLE = "SLiMgui" # This governs the location of our prefs, which we keep under org.messerlab.SLiMgui
21-
VERSION = 4.2.1
21+
VERSION = 4.2.2
2222

2323
docIconFiles.files = $$PWD/QtSLiM_DocIcon.icns
2424
docIconFiles.path = Contents/Resources

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>4.2.1</string>
91+
<string>4.2.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>4.2.1</string>
91+
<string>4.2.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,9 +6,11 @@ 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 4.2.2 (Eidos version 3.2.2):
912
fix SLiMgui crash with code completion
1013
fix spurious VCF reading error (number of calls not equal to number of samples) due to incorrect usage of eof()
11-
1214

1315
version 4.2.1 (Eidos version 3.2.1):
1416
fix an issue in Linux release/installer builds with FORTIFY_SOURCE=3 (resulting in a "buffer overflow" error in self-test and in treeSeqOutput())

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 ("4.2.1")
48-
#define SLIM_VERSION_FLOAT (4.21)
47+
#define SLIM_VERSION_STRING ("4.2.2")
48+
#define SLIM_VERSION_FLOAT (4.22)
4949

5050

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

eidos/eidos_globals.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ class EidosToken;
5252

5353

5454
// Eidos version: See also Info.plist
55-
#define EIDOS_VERSION_STRING ("3.2.1")
56-
#define EIDOS_VERSION_FLOAT (3.21)
55+
#define EIDOS_VERSION_STRING ("3.2.2")
56+
#define EIDOS_VERSION_FLOAT (3.22)
5757

5858

5959
#ifdef _OPENMP

0 commit comments

Comments
 (0)