Skip to content

Commit 16d8c56

Browse files
committed
version increment to 3.7
1 parent eae542c commit 16d8c56

File tree

6 files changed

+10
-8
lines changed

6 files changed

+10
-8
lines changed

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>2.6</string>
20+
<string>2.7</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 = 3.6
21+
VERSION = 3.7
2222

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

SLiMgui/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>3.6</string>
91+
<string>3.7</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
@@ -8,6 +8,9 @@ The build numbers given here are visible in SLiMgui's about panel. They are not
88

99

1010
development head:
11+
12+
13+
version 3.7 (Eidos version 2.7)
1114
change to allow .trees files to contain unreferenced empty subpops, to allow ancestral use of subpops that are now empty (see #168)
1215
disallow reuse of subpopulation ids if they have gone into the tree-sequence tables, to prevent collisions
1316
change so that entries for unused subpops are not modified in population tables loaded from a tree sequence (PR #172)
@@ -90,7 +93,6 @@ development head:
9093
updated to tskit 0.99.15 to try out C API 1.0 prerelease stuff
9194
add [Ns$ timeUnit=NULL] parameter to initializeTreeSeq() to set the name of the tree-sequence recording time unit
9295

93-
9496
version 3.6 (build 2784; Eidos version 2.6):
9597
update to JSON for Modern C++ version 3.9.1
9698
add metadata= parameter to treeSeqOutput(), to support user-generated metadata on the tree sequence

core/slim_globals.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ class Subpopulation;
4141
class SLiMEidosBlock;
4242

4343

44-
#define SLIM_VERSION_STRING ("3.6")
45-
#define SLIM_VERSION_FLOAT (3.6)
44+
#define SLIM_VERSION_STRING ("3.7")
45+
#define SLIM_VERSION_FLOAT (3.7)
4646

4747

4848
// 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
@@ -53,8 +53,8 @@ class EidosScript;
5353
class EidosToken;
5454

5555

56-
#define EIDOS_VERSION_STRING ("2.6")
57-
#define EIDOS_VERSION_FLOAT (2.6)
56+
#define EIDOS_VERSION_STRING ("2.7")
57+
#define EIDOS_VERSION_FLOAT (2.7)
5858

5959

6060
// These should be called once at startup to give Eidos an opportunity to initialize static state

0 commit comments

Comments
 (0)