Skip to content

Commit

Permalink
increment version to 3.6 (Eidos 2.6)
Browse files Browse the repository at this point in the history
  • Loading branch information
bhaller committed Mar 3, 2021
1 parent 34eff16 commit 978622e
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.5</string>
<string>2.6</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.5
VERSION = 3.6

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.5</string>
<string>3.6</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.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
make ampersands show up in the Jump menu properly in SLiMgui
Expand Down Expand Up @@ -50,7 +53,6 @@ development head:
extend Dictionary() constructor to allow it to be passed key-value pairs to set, or a Dictionary to copy
extend Dictionary with an identicalContents() method to test for equality of Dictionary objects (containing the identical keys and values)


version 3.5 (build 2663; Eidos version 2.5):
added build instructions for Windows WSL, thanks to Bernard Kim (no code change)
fix some issues with recipes 13.5 and 14.8 (involving live plotting in R) with platform-dependent paths, lack of PDF viewing support in QtSLiM, etc.
Expand Down
4 changes: 2 additions & 2 deletions core/slim_globals.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ class Subpopulation;
class SLiMEidosBlock;


#define SLIM_VERSION_STRING ("3.5")
#define SLIM_VERSION_FLOAT (3.5)
#define SLIM_VERSION_STRING ("3.6")
#define SLIM_VERSION_FLOAT (3.6)


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


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

0 comments on commit 978622e

Please sign in to comment.