Skip to content

Commit 656e70c

Browse files
committed
Updates for the 2019.3.0 release.
1 parent 16eab40 commit 656e70c

3 files changed

Lines changed: 13 additions & 5 deletions

File tree

CHANGELOG

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ SIRE changelog
33

44
devel branch:
55

6+
[2019.3.0] November 2019 - Added functionality to restrict the search space
7+
when finding paths between atoms or searching for rings. Fixed
8+
performance issue in GroTop parser caused by an N^2 loop over
9+
atoms when searching the intrascale matrix. We now loop over
10+
cut-groups, which is far more efficient. Fixed issues with
11+
Python wrapper generation caused by issues with missing define
12+
symbols and a bug in the scanheaders.py script.
13+
614
[2019.2.1] October 2019 - Updated the Conda recipe to pin the dependencies
715
of dependencies that are used at run time since Conda doesn't
816
automatically do this for you. Added instructions detailing the
@@ -14,7 +22,7 @@ devel branch:
1422
to using CastXML. Added support for running background
1523
processes on Windows (@ptosco). Updated SOMD Python wrapper
1624
to write restart files every cycle to simplify system monitoring
17-
in BioSimSpace. Fixed macOS build issue by not linking against
25+
in BioSimSpace. Fixed macOS build issue by not linking against
1826
libpython. Made sure that Conda dependencies are pinned
1927
correctly to avoid compatibility issues. Fixed bug that
2028
prevented upload statistics being sent and added support for

corelib/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
################################
88

99
set (S_VERSION_MAJOR "2019")
10-
set (S_VERSION_MINOR "2")
11-
set (S_VERSION_PATCH "1")
10+
set (S_VERSION_MINOR "3")
11+
set (S_VERSION_PATCH "0")
1212

1313
set (SIRE_VERSION "${S_VERSION_MAJOR}.${S_VERSION_MINOR}.${S_VERSION_PATCH}")
1414

wrapper/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99

1010
# project version
1111
set (SIRE_VERSION_MAJOR "2019")
12-
set (SIRE_VERSION_MINOR "2")
13-
set (SIRE_VERSION_PATCH "1")
12+
set (SIRE_VERSION_MINOR "3")
13+
set (SIRE_VERSION_PATCH "0")
1414

1515
set (SIRE_VERSION "${SIRE_VERSION_MAJOR}.${SIRE_VERSION_MINOR}.${SIRE_VERSION_PATCH}")
1616

0 commit comments

Comments
 (0)