Skip to content

Commit 9fe3543

Browse files
committed
change version to 4.2 in anticipation of release
1 parent 28cc4f2 commit 9fe3543

8 files changed

Lines changed: 12 additions & 10 deletions

File tree

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.1</string>
20+
<string>3.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.1</string>
20+
<string>3.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.1
21+
VERSION = 4.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.1</string>
91+
<string>4.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.1</string>
91+
<string>4.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 4.2 (Eidos version 3.2):
912
fix for #418, a crash involving null genomes in nonWF (has_null_genomes_ was not set correctly by addCloned() or takeMigrants() when putting a null genome into a subpop that previously had none)
1013
big changes to Eidos under the hood - removal of the singleton/vector distinction and EidosValue subclasses, add constness flag, differentiate casting vs. non-casting accesses, etc.
1114
policy change: float indices are no longer legal for subsetting, indices must be integer (or a logical vector, as usual); this was inherited from R and is a bad idea for Eidos
@@ -43,7 +46,6 @@ development head (in the master branch):
4346
add estimatedLastTick() method to Community; useful for custom plotting where you want to know the span of the model up front, to set an axis range, for example
4447
adjusted recipe 5.3.1 to use zero-based subpopulation ids, simplifying the logic; the workshop uses this recipe and it was a common source of confusion
4548

46-
4749
version 4.1 (Eidos version 3.1):
4850
fix a minor bug with autofix when opening multiple .slim documents at once in SLiMgui
4951
fix recipe 17.10 to set the time unit, to avoid the timescale warning from tskit

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.1")
48-
#define SLIM_VERSION_FLOAT (4.1)
47+
#define SLIM_VERSION_STRING ("4.2")
48+
#define SLIM_VERSION_FLOAT (4.2)
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.1")
56-
#define EIDOS_VERSION_FLOAT (3.1)
55+
#define EIDOS_VERSION_STRING ("3.2")
56+
#define EIDOS_VERSION_FLOAT (3.2)
5757

5858

5959
#ifdef _OPENMP

0 commit comments

Comments
 (0)