Skip to content

Commit

Permalink
bump vesion number #977
Browse files Browse the repository at this point in the history
  • Loading branch information
rbouckaert committed Aug 11, 2021
1 parent 2ebbe74 commit 46951af
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 11 deletions.
4 changes: 2 additions & 2 deletions build.xml
Expand Up @@ -269,8 +269,8 @@


<!-- Release -->
<property name="version" value="2.6.5" />
<property name="version_number" value="2.6.5" />
<property name="version" value="2.6.6" />
<property name="version_number" value="2.6.6" />
<property name="release_dir" value="release" />
<property name="copyright" value="Beast 2 development team 2011-2021" />

Expand Down
4 changes: 2 additions & 2 deletions release/common/README.txt
@@ -1,7 +1,7 @@
BEAST v2.6.5 2021
BEAST v2.6.6 2021
Beast 2 development team 2011-2021

Last updated: June 2021
Last updated: August 2021

Contents:
1) INTRODUCTION
Expand Down
16 changes: 14 additions & 2 deletions release/common/VERSION HISTORY.txt
@@ -1,10 +1,22 @@
BEAST v2.6.5 2021
BEAST v2.6.6 2021
Beast 2 development team 2011-2021
Version History
Last updated: June 2021
Last updated: August 2021

All issues can be viewed at https://github.com/CompEvol/beast2/issues
================================================================================
Version 2.6.6
Fix so that when not using ambiguities, the nucleotide 'U' base pair is correctly interpreted
Fix tree annotator for lower bound on common ancestor heights
Make the -prefix option work when not using a directory
Allow '=' signs in options passsed with -D
Add filter input to SwapOperator
Fix so DocMaker works again
Update for R script to create EBSP plots
Limit size of Trie to prevent memory leaks for some models
More robust Nexus parser
Improved error messages

Version 2.6.5
The GUI version of logcombiner produces output again

Expand Down
4 changes: 2 additions & 2 deletions src/beast/app/BEASTVersion.java
Expand Up @@ -19,11 +19,11 @@ public class BEASTVersion extends Version {
/**
* Version string: assumed to be in format x.x.x
*/
private static final String VERSION = "2.6.5";
private static final String VERSION = "2.6.6";

private static final String DATE_STRING = "2002-2021";

private static final boolean IS_PRERELEASE = true;
private static final boolean IS_PRERELEASE = false;

private static final String BEAST2_WEBPAGE = "http://beast2.org/";

Expand Down
4 changes: 2 additions & 2 deletions src/beast/app/BEASTVersion2.java
Expand Up @@ -9,11 +9,11 @@ public class BEASTVersion2 extends BEASTVersion {
/**
* Version string: assumed to be in format x.x.x
*/
private static final String VERSION = "2.6.5";
private static final String VERSION = "2.6.6";

private static final String DATE_STRING = "2002-2021";

private static final boolean IS_PRERELEASE = true;
private static final boolean IS_PRERELEASE = false;
//
// private static final String BEAST2_WEBPAGE = "http://beast2.org/";
//
Expand Down
2 changes: 1 addition & 1 deletion version.xml
@@ -1 +1 @@
<addon name='BEAST' version='2.6.5' url="https://github.com/CompEvol/beast2/releases/download/v2.6.5/BEAST.v2.6.5.package.zip"/>
<addon name='BEAST' version='2.6.6' url="https://github.com/CompEvol/beast2/releases/download/v2.6.6/BEAST.v2.6.6.package.zip"/>

0 comments on commit 46951af

Please sign in to comment.