Skip to content

Commit

Permalink
increment version to 3.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bhaller committed Feb 12, 2022
1 parent e78cb02 commit 34c9113
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion EidosScribe/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>2.7</string>
<string>2.7.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion QtSLiM/QtSLiM.pro
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ QMAKE_INFO_PLIST = QtSLiM_Info.plist
ICON = QtSLiM_AppIcon.icns
QMAKE_TARGET_BUNDLE_PREFIX = "org.messerlab"
QMAKE_BUNDLE = "SLiMgui" # This governs the location of our prefs, which we keep under org.messerlab.SLiMgui
VERSION = 3.7
VERSION = 3.7.1

docIconFiles.files = $$PWD/QtSLiM_DocIcon.icns
docIconFiles.path = Contents/Resources
Expand Down
2 changes: 1 addition & 1 deletion SLiMgui/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>3.7</string>
<string>3.7.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
4 changes: 3 additions & 1 deletion VERSIONS
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ The build numbers given here are visible in SLiMgui's about panel. They are not


development head:


version 3.7.1 (Eidos version 2.7.1):
fix a problem with the python recipe for recipe 18.13
fix printf format specifier on Windows that was causing issues with old compilers on conda
fix spurious "subpopulation p0 has already been used" errors in certain circumstances (#274), which was biting stdpopsim
Expand All @@ -16,7 +19,6 @@ development head:
fix the appearance of SLiMgui profile output when in dark mode (#270)
advance copyrights to 2022
fix recipes 17.8 and 17.9 to use sim_ancestry() instead of simulate()


version 3.7 (Eidos version 2.7)
change to allow .trees files to contain unreferenced empty subpops, to allow ancestral use of subpops that are now empty (see #168)
Expand Down
4 changes: 2 additions & 2 deletions core/slim_globals.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ class Subpopulation;
class SLiMEidosBlock;


#define SLIM_VERSION_STRING ("3.7")
#define SLIM_VERSION_FLOAT (3.7)
#define SLIM_VERSION_STRING ("3.7.1")
#define SLIM_VERSION_FLOAT (3.71)


// This should be called once at startup to give SLiM an opportunity to initialize static state
Expand Down
4 changes: 2 additions & 2 deletions eidos/eidos_globals.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ class EidosScript;
class EidosToken;


#define EIDOS_VERSION_STRING ("2.7")
#define EIDOS_VERSION_FLOAT (2.7)
#define EIDOS_VERSION_STRING ("2.7.1")
#define EIDOS_VERSION_FLOAT (2.71)


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

0 comments on commit 34c9113

Please sign in to comment.