Skip to content

Commit 4b8adfd

Browse files
committed
push version to 4.3
1 parent a36cfa4 commit 4b8adfd

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.2.2</string>
20+
<string>3.3</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.2</string>
20+
<string>3.3</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 = 4.2.2
24+
VERSION = 4.3
2525

2626
docIconFiles.files = $$PWD/QtSLiM_DocIcon.icns
2727
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.2</string>
91+
<string>4.3</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.2</string>
91+
<string>4.3</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.3 (Eidos version 3.3):
912
fixed a bug in calcWattersonsTheta(): the value calculated would be incorrect if a window (start/end) was specified
1013
added TOC I and TOC II to the PDF index of the SLiM manual; removed the bottom-of-page links section, which made search difficult
1114
add subpopulationsWithNames() method to Community, to facilitate being able to use user-defined names for subpops
@@ -34,7 +37,6 @@ development head (in the master branch):
3437
add genomicElementForPosition() and hasGenomicElementForPosition() methods on Chromosome
3538
policy change: genomicElements property is now in sorted order (not in order of declaration)
3639
add a "Copy as HTML" command to copy script with syntax coloring and such
37-
3840

3941
version 4.2.2 (Eidos version 3.2.2):
4042
fix SLiMgui crash with code completion

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.2")
48-
#define SLIM_VERSION_FLOAT (4.22)
47+
#define SLIM_VERSION_STRING ("4.3")
48+
#define SLIM_VERSION_FLOAT (4.3)
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.2")
56-
#define EIDOS_VERSION_FLOAT (3.22)
55+
#define EIDOS_VERSION_STRING ("3.3")
56+
#define EIDOS_VERSION_FLOAT (3.3)
5757

5858

5959
#ifdef _OPENMP

0 commit comments

Comments
 (0)