Skip to content

Commit 34c9113

Browse files
committed
increment version to 3.7.1
1 parent e78cb02 commit 34c9113

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.7</string>
20+
<string>2.7.1</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.7
21+
VERSION = 3.7.1
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.7</string>
91+
<string>3.7.1</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.1 (Eidos version 2.7.1):
1114
fix a problem with the python recipe for recipe 18.13
1215
fix printf format specifier on Windows that was causing issues with old compilers on conda
1316
fix spurious "subpopulation p0 has already been used" errors in certain circumstances (#274), which was biting stdpopsim
@@ -16,7 +19,6 @@ development head:
1619
fix the appearance of SLiMgui profile output when in dark mode (#270)
1720
advance copyrights to 2022
1821
fix recipes 17.8 and 17.9 to use sim_ancestry() instead of simulate()
19-
2022

2123
version 3.7 (Eidos version 2.7)
2224
change to allow .trees files to contain unreferenced empty subpops, to allow ancestral use of subpops that are now empty (see #168)

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.7")
45-
#define SLIM_VERSION_FLOAT (3.7)
44+
#define SLIM_VERSION_STRING ("3.7.1")
45+
#define SLIM_VERSION_FLOAT (3.71)
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.7")
57-
#define EIDOS_VERSION_FLOAT (2.7)
56+
#define EIDOS_VERSION_STRING ("2.7.1")
57+
#define EIDOS_VERSION_FLOAT (2.71)
5858

5959

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

0 commit comments

Comments
 (0)