Skip to content

Commit 39ac441

Browse files
authored
Merge pull request #2266 from AllenInstitute/feature/2266-release-notes
Prepare release notes
2 parents d29ebdb + 6258cf9 commit 39ac441

5 files changed

+419
-1
lines changed

Packages/MIES/MIES_SweepFormula_Helpers.ipf

+8-1
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ Function/WAVE SFH_GetArgumentAsWave(variable jsonId, string jsonPath, string gra
238238
if(ParamIsDefault(expectedWaveType))
239239
checkWaveType = 0
240240
else
241-
checkWaveType = !!checkWaveType
241+
checkWaveType = 1
242242
endif
243243

244244
if(ParamIsDefault(singleResult))
@@ -306,7 +306,14 @@ Function SFH_ASSERT(variable condition, string message, [variable jsonId])
306306
endif
307307
SVAR error = $GetSweepFormulaParseErrorMessage()
308308
error = message
309+
309310
#ifdef AUTOMATED_TESTING_DEBUGGING
311+
312+
#ifdef AUTOMATED_TESTING
313+
#if exists("INFO")
314+
INFO("SFH_ASSERT: %s", s0 = error)
315+
#endif
316+
#endif
310317
Debugger
311318
#endif
312319
Abort

Packages/doc/developers.rst

+1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ Cutting a new release
6262
the top of ``Packages\doc\releasenotes.rst``
6363
- Call ``tools\create-changelog.sh`` which generate a raw changelog and
6464
fill ``releasenotes.rst`` with a cleaned up version of it.
65+
Work from bottom to top.
6566
- Propose a pull request and get it merged
6667
- Checkout the main branch
6768
- Tag the current state with ``git tag Release_X.Y_*``, see ``git tag``

0 commit comments

Comments
 (0)