Skip to content

Commit

Permalink
version increment to 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
bhaller committed Dec 15, 2021
1 parent eae542c commit 16d8c56
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.6</string>
<string>2.7</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.6
VERSION = 3.7

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.6</string>
<string>3.7</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 (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)
disallow reuse of subpopulation ids if they have gone into the tree-sequence tables, to prevent collisions
change so that entries for unused subpops are not modified in population tables loaded from a tree sequence (PR #172)
Expand Down Expand Up @@ -90,7 +93,6 @@ development head:
updated to tskit 0.99.15 to try out C API 1.0 prerelease stuff
add [Ns$ timeUnit=NULL] parameter to initializeTreeSeq() to set the name of the tree-sequence recording time unit


version 3.6 (build 2784; Eidos version 2.6):
update to JSON for Modern C++ version 3.9.1
add metadata= parameter to treeSeqOutput(), to support user-generated metadata on the tree sequence
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.6")
#define SLIM_VERSION_FLOAT (3.6)
#define SLIM_VERSION_STRING ("3.7")
#define SLIM_VERSION_FLOAT (3.7)


// 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.6")
#define EIDOS_VERSION_FLOAT (2.6)
#define EIDOS_VERSION_STRING ("2.7")
#define EIDOS_VERSION_FLOAT (2.7)


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

0 comments on commit 16d8c56

Please sign in to comment.