Skip to content

Commit a756e85

Browse files
authored
[REL] v0.4.0rc1 (#239)
* initial draft of release * add new pull request for release instructions.
1 parent 4bf578d commit a756e85

File tree

2 files changed

+167
-17
lines changed

2 files changed

+167
-17
lines changed

CHANGELOG.rst

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,71 @@
44
CHANGELOG
55
=========
66

7+
0.4.0 (October 07, 2019)
8+
------------------------
9+
This has been a busy month for NiBetaSeries.
10+
We have two more methods for calculating betas (LSA and FS),
11+
and LSS has been modified to account for separate conditions.
12+
All of this great work is thanks to @tsalo.
13+
14+
The second major change is the refactor of how we read from
15+
the FMRIPREP directory, previously we assumed results from
16+
fmriprep version (< v1.2.0), but now we only support files output
17+
from fmriprep (>= v1.2.0).
18+
If you have results from an older version of fmriprep, check our
19+
FAQ for a potential solution.
20+
21+
The third major change is the generation of a citation template,
22+
so you can easily populate your methods section with the appropriate information.
23+
Again, thanks to @tsalo for this marvelous contribution.
24+
25+
The fourth and final major change (in no particular order), is passing the
26+
beta series image maps directly to the output directory, no longer requiring the
27+
user to have an atlas and a lookup table to use NiBetaSeries.
28+
This will allow users to use the beta series image maps for whatever downstream
29+
analysis they wish.
30+
31+
Thank you to all the contributors mentioned below for improving NiBetaSeries
32+
through documentation fixes and other code changes.
33+
34+
An unsung hero is @PeerHerholz for code review and
35+
beneficial recommendations for the future of NiBetaSeries, Thank you!
36+
Also not listed is @mwvoss for opening issue #123.
37+
Making a good issue is work and should be recognized, thank you!
38+
39+
While I have almost certainly missed giving thanks to everyone that
40+
has helped, please know I appreciate your contributions and I'm
41+
thankful you took some time out of your day to help this project grow.
42+
43+
* [DOC] update instructions with template checklist (#242) @jdkent
44+
* [FIX] update code-server version (#238) @jdkent
45+
* [DOC] Generate citable boilerplates for workflows (#205) @tsalo
46+
* [DOC] Clarify in demo that you are stripping color codes #123 (#234) @ipacheco-uy
47+
* [DOC] Fix documentation headers (#235) @atrievel
48+
* [FIX] add nano to dev container (#233) @pranesh-sp
49+
* [DOC] add lsa section (#231) @jdkent
50+
* [DOC] add joss badge (#229) @zkhan12
51+
* [ENH,DOC] add development documentation section (#222) @jdkent
52+
* [DOC,FIX] add fake img and lut to participant workflow (#225) @jdkent
53+
* [ENH] Implement finite BOLD response- separate (FS) modeling (#204) @tsalo
54+
* [MAINT] allow more lenience for pull requests (#223) @jdkent
55+
* [ENH] Make atlases optional (#213) @jdkent
56+
* [FIX,DOC] make title for changelog (#221) @jdkent
57+
* [MAINT] make travisci more efficient (#216) @jdkent
58+
* [FIX] make codecov yaml valid (#220) @jdkent
59+
* [FIX] show binder badge on readthedocs (#219) @jdkent
60+
* [ENH,DOC] sphinx gallery binder (#217) @jdkent
61+
* [MAINT] make codecov more lenient (#215) @jdkent
62+
* [FIX] use scope=derivatives in collect_data (#212) @jdkent
63+
* [FIX] respond to suggested edits (#206) @jdkent
64+
* [ENH] Implement least squares- all (LSA) modeling (#202) @tsalo
65+
* [TST] add more tests (#201) @jdkent
66+
* [FIX, DOC] Rename low-pass filter to high-pass filter (#198) @tsalo
67+
* [MAINT] explicitly set codecov settings (#200) @jdkent
68+
* [ENH,FIX] refactor bids file processing (#193) @jdkent
69+
* [ENH] Separate other conditions in LSS model (#191) @tsalo
70+
71+
772
0.3.2 (September 04, 2019)
873
--------------------------
974

long_description.rst

Lines changed: 102 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,13 @@ of providing a command-line application experience like fMRIPrep_.
3232

3333
What does NiBetaSeries give me?
3434
-------------------------------
35-
Currently NiBetaSeries returns symmetric z-transformed correlation
36-
matrices, with an entry for each parcel defined in the atlas.
37-
Soon, NiBetaSeries will also return the betaseries images themselves,
38-
so you can flexibly apply additional analysis methods.
35+
Currently NiBetaSeries returns the beta series images and optionally
36+
symmetric z-transformed correlation matrices with an entry for each
37+
parcel defined in the atlas.
3938

40-
.. note:: The betas (i.e., parameter estimates) are generated using the "Least Squares Separate" procedure.
39+
.. note:: The betas (i.e., parameter estimates) are generated using either
40+
the "Least Squares Separate" or "Least Squares All" procedures.
4141
Please read the betaseries page for more background information.
42-
There are plans to support Least Squares All in future iterations.
4342

4443
What do I need to run NiBetaSeries?
4544
-----------------------------------
@@ -73,18 +72,104 @@ Please check out their pages and support the developers.
7372

7473
.. _changelog:
7574

76-
0.3.0 (August 29, 2019)
77-
=======================
75+
=========
76+
CHANGELOG
77+
=========
78+
79+
0.4.0 (October 07, 2019)
80+
------------------------
81+
This has been a busy month for NiBetaSeries.
82+
We have two more methods for calculating betas (LSA and FS),
83+
and LSS has been modified to account for separate conditions.
84+
All of this great work is thanks to @tsalo.
85+
86+
The second major change is the refactor of how we read from
87+
the FMRIPREP directory, previously we assumed results from
88+
fmriprep version (< v1.2.0), but now we only support files output
89+
from fmriprep (>= v1.2.0).
90+
If you have results from an older version of fmriprep, check our
91+
FAQ for a potential solution.
92+
93+
The third major change is the generation of a citation template,
94+
so you can easily populate your methods section with the appropriate information.
95+
Again, thanks to @tsalo for this marvelous contribution.
96+
97+
The fourth and final major change (in no particular order), is passing the
98+
beta series image maps directly to the output directory, no longer requiring the
99+
user to have an atlas and a lookup table to use NiBetaSeries.
100+
This will allow users to use the beta series image maps for whatever downstream
101+
analysis they wish.
102+
103+
Thank you to all the contributors mentioned below for improving NiBetaSeries
104+
through documentation fixes and other code changes.
105+
106+
An unsung hero is @PeerHerholz for code review and
107+
beneficial recommendations for the future of NiBetaSeries, Thank you!
108+
Also not listed is @mwvoss for opening issue #123.
109+
Making a good issue is work and should be recognized, thank you!
110+
111+
While I have almost certainly missed giving thanks to everyone that
112+
has helped, please know I appreciate your contributions and I'm
113+
thankful you took some time out of your day to help this project grow.
114+
115+
* [DOC] update instructions with template checklist (#242) @jdkent
116+
* [FIX] update code-server version (#238) @jdkent
117+
* [DOC] Generate citable boilerplates for workflows (#205) @tsalo
118+
* [DOC] Clarify in demo that you are stripping color codes #123 (#234) @ipacheco-uy
119+
* [DOC] Fix documentation headers (#235) @atrievel
120+
* [FIX] add nano to dev container (#233) @pranesh-sp
121+
* [DOC] add lsa section (#231) @jdkent
122+
* [DOC] add joss badge (#229) @zkhan12
123+
* [ENH,DOC] add development documentation section (#222) @jdkent
124+
* [DOC,FIX] add fake img and lut to participant workflow (#225) @jdkent
125+
* [ENH] Implement finite BOLD response- separate (FS) modeling (#204) @tsalo
126+
* [MAINT] allow more lenience for pull requests (#223) @jdkent
127+
* [ENH] Make atlases optional (#213) @jdkent
128+
* [FIX,DOC] make title for changelog (#221) @jdkent
129+
* [MAINT] make travisci more efficient (#216) @jdkent
130+
* [FIX] make codecov yaml valid (#220) @jdkent
131+
* [FIX] show binder badge on readthedocs (#219) @jdkent
132+
* [ENH,DOC] sphinx gallery binder (#217) @jdkent
133+
* [MAINT] make codecov more lenient (#215) @jdkent
134+
* [FIX] use scope=derivatives in collect_data (#212) @jdkent
135+
* [FIX] respond to suggested edits (#206) @jdkent
136+
* [ENH] Implement least squares- all (LSA) modeling (#202) @tsalo
137+
* [TST] add more tests (#201) @jdkent
138+
* [FIX, DOC] Rename low-pass filter to high-pass filter (#198) @tsalo
139+
* [MAINT] explicitly set codecov settings (#200) @jdkent
140+
* [ENH,FIX] refactor bids file processing (#193) @jdkent
141+
* [ENH] Separate other conditions in LSS model (#191) @tsalo
142+
143+
144+
0.3.2 (September 04, 2019)
145+
--------------------------
78146

79-
Thanks to @PeerHerholz and @njvack for their contributions on this release.
80-
Special thanks to @snastase for being a great reviewer and improving the project
81-
overall.
82147
This release is special because it will be published in the
83148
Journal of Open Source Software (JOSS).
84149
One condition of this is that the authors on the paper be the only authors in the zenodo file.
85150
I will modify the authors listed on the zenodo file for this release,
86151
but I will add all contributors back on for the subsequent release.
87152

153+
* [MAINT] fix zenodo file
154+
155+
0.3.1 (September 04, 2019)
156+
--------------------------
157+
158+
Changes to installation and documentation, but no functional code changes.
159+
160+
* [DOC] address review comments (#185) @jdkent
161+
* [DOC] add everyone to contributors in the zenodo file (#188) @jdkent
162+
* [MAINT] Change Installation Method (#187) @jdkent
163+
* [ENH] add code server (#182) @jdkent
164+
* [MAINT] build tags (#183) @jdkent
165+
166+
0.3.0 (August 29, 2019)
167+
-----------------------
168+
169+
Thanks to @PeerHerholz and @njvack for their contributions on this release.
170+
Special thanks to @snastase for being a great reviewer and improving the project
171+
overall.
172+
88173
* [ENH] reduce focus on parcellations (#179) @jdkent
89174
* [FIX] generalized -> general linear model description (#178) @jdkent
90175
* [DOC] Add math (#177) @jdkent
@@ -110,7 +195,7 @@ but I will add all contributors back on for the subsequent release.
110195
* [WIP] JOSS Paper (#122) @jdkent
111196

112197
0.2.3 (January 29, 2019)
113-
========================
198+
------------------------
114199

115200
Various documentation and testing changes.
116201
We will be using readthedocs going forward and not doctr.
@@ -137,7 +222,7 @@ We will be using readthedocs going forward and not doctr.
137222
* [FIX] syntax links (#119) @PeerHerholz
138223

139224
0.2.2 (November 15, 2018)
140-
=========================
225+
-------------------------
141226

142227
Quick bug fixes, one related to updating the
143228
nipype dependency to a newer version (1.1.5)
@@ -146,7 +231,7 @@ nipype dependency to a newer version (1.1.5)
146231
* [FIX] add missing comma in hrf_models (#83) @jdkent
147232

148233
0.2.1 (November 13, 2018)
149-
=========================
234+
-------------------------
150235

151236
Large thanks to everyone at neurohackademy that helped make this a reality.
152237
This release is still a bit premature because I'm testing out
@@ -170,7 +255,7 @@ my workflow for making releases.
170255
* [MGT] simplify and create deployment (#79) @jdkent
171256

172257
0.2.0 (November 13, 2018)
173-
=========================
258+
-------------------------
174259

175260
* [MGT] simplify and create deployment (#79)
176261
* [TST] Add more tests (#78)
@@ -210,7 +295,7 @@ my workflow for making releases.
210295
* [ENH] Refactor (#2)
211296

212297

213-
0.1.0 (2018-06-08)
214-
==================
298+
0.1.0 (June 08, 2018)
299+
---------------------
215300

216301
* First release on PyPI.

0 commit comments

Comments
 (0)