From 0ef83edf888921f2dfad42739e5893baa4658be1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mihai=20Capot=C4=83?= Date: Tue, 18 Jun 2019 10:52:53 -0700 Subject: [PATCH 1/2] Add release notes for v0.9 --- NEWS.rst | 29 +++++++++++++++++++++++++++++ docs/newsfragments/384.feature | 1 - docs/newsfragments/396.feature | 1 - docs/newsfragments/397.feature | 1 - docs/newsfragments/398.feature | 1 - docs/newsfragments/399.feature | 1 - docs/newsfragments/405.feature | 1 - docs/newsfragments/409.feature | 1 - 8 files changed, 29 insertions(+), 7 deletions(-) delete mode 100644 docs/newsfragments/384.feature delete mode 100644 docs/newsfragments/396.feature delete mode 100644 docs/newsfragments/397.feature delete mode 100644 docs/newsfragments/398.feature delete mode 100644 docs/newsfragments/399.feature delete mode 100644 docs/newsfragments/405.feature delete mode 100644 docs/newsfragments/409.feature diff --git a/NEWS.rst b/NEWS.rst index 3af1dcb58..bb722dea2 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -2,6 +2,35 @@ .. towncrier release notes start +BrainIAK 0.9 (2019-06-18) +========================= + +Features +-------- + +- isc: Revamped ISC/ISFC functionality with more statistical tests. (`#384 + `_) +- utils: phase_randomize outputs phase-scrambled input data, not tied to + ISC/ISFC. (`#396 `_) +- utils: p_from_null no longer estimates distribution, simply returns p-value. + (`#397 `_) +- isc: Analyses will now tolerate NaNs or tolerate a proportion of NaNs. (`#398 + `_) +- isc: Output either vectorized triangle and diagonal of square matrices. + (`#399 `_) +- isc: Asymmetric ISFC analysis can now be performed based on a targets array. + (`#409 `_) +- Added tutorials to Docker image. (`#425 + `_) + +Deprecations and removals +------------------------- + +- isfc: ISC/ISFC have a new API and are available in `brainiak.isc`, not + ``brainiak.isfc``. (`#384 + `_) + + BrainIAK 0.8 (2018-11-06) ========================= diff --git a/docs/newsfragments/384.feature b/docs/newsfragments/384.feature deleted file mode 100644 index 78396ce72..000000000 --- a/docs/newsfragments/384.feature +++ /dev/null @@ -1 +0,0 @@ -isc: Revamped ISC/ISFC functionality with more statistical tests. diff --git a/docs/newsfragments/396.feature b/docs/newsfragments/396.feature deleted file mode 100644 index e6731e504..000000000 --- a/docs/newsfragments/396.feature +++ /dev/null @@ -1 +0,0 @@ -utils.phase_randomize outputs phase-scrambled input data, not tied to ISC/ISFC diff --git a/docs/newsfragments/397.feature b/docs/newsfragments/397.feature deleted file mode 100644 index fabbc3014..000000000 --- a/docs/newsfragments/397.feature +++ /dev/null @@ -1 +0,0 @@ -utils.p_from_null no longer estimates distribution, simply returns p-value diff --git a/docs/newsfragments/398.feature b/docs/newsfragments/398.feature deleted file mode 100644 index 9935b6d99..000000000 --- a/docs/newsfragments/398.feature +++ /dev/null @@ -1 +0,0 @@ -ISC/ISFC analyses will now tolerate NaNs or tolerate a proportion of NaNs diff --git a/docs/newsfragments/399.feature b/docs/newsfragments/399.feature deleted file mode 100644 index d51d1b372..000000000 --- a/docs/newsfragments/399.feature +++ /dev/null @@ -1 +0,0 @@ -ISFC will now output either vectorized triangle and diagonal of square matrices diff --git a/docs/newsfragments/405.feature b/docs/newsfragments/405.feature deleted file mode 100644 index 5bc21b1cd..000000000 --- a/docs/newsfragments/405.feature +++ /dev/null @@ -1 +0,0 @@ -Updates NaN-toleration, ISFC output shape, and targets array for ISFC diff --git a/docs/newsfragments/409.feature b/docs/newsfragments/409.feature deleted file mode 100644 index 1382a649f..000000000 --- a/docs/newsfragments/409.feature +++ /dev/null @@ -1 +0,0 @@ -Asymmetric ISFC analysis can now be performed based on a targets array From a67f468835ab3d81c426d7f9976ac2d02929c623 Mon Sep 17 00:00:00 2001 From: Samuel Nastase Date: Tue, 18 Jun 2019 15:33:10 -0400 Subject: [PATCH 2/2] Fixed minor typo --- NEWS.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NEWS.rst b/NEWS.rst index bb722dea2..3e94165de 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -16,7 +16,7 @@ Features (`#397 `_) - isc: Analyses will now tolerate NaNs or tolerate a proportion of NaNs. (`#398 `_) -- isc: Output either vectorized triangle and diagonal of square matrices. +- isc: Output either vectorized triangle and diagonal or square matrices. (`#399 `_) - isc: Asymmetric ISFC analysis can now be performed based on a targets array. (`#409 `_)