Skip to content

Commit 96ca12d

Browse files
committed
Merge branch 'master' into complex-containers
2 parents f9adb5f + d5ddaef commit 96ca12d

2 files changed

Lines changed: 14 additions & 5 deletions

File tree

Jenkinsfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -98,19 +98,19 @@ pipeline {
9898
sh 'git clean -xffd'
9999

100100
def stanMathSigs = ['test/integration/signatures/stan_math_signatures.t'].join(" ")
101-
skipExpressionTests = utils.verifyChanges(stanMathSigs)
101+
skipExpressionTests = utils.verifyChanges(stanMathSigs, "master")
102102

103103
def runTestPaths = ['src', 'test/integration/good', 'test/stancjs'].join(" ")
104-
skipRemainingStages = utils.verifyChanges(runTestPaths)
104+
skipRemainingStages = utils.verifyChanges(runTestPaths, "master")
105105

106106
def compileTests = ['test/integration/good'].join(" ")
107-
skipCompileTests = utils.verifyChanges(compileTests)
107+
skipCompileTests = utils.verifyChanges(compileTests, "master")
108108

109109
def compileTestsAtO1 = ['test/integration/good/compiler-optimizations'].join(" ")
110-
skipCompileTestsAtO1 = utils.verifyChanges(compileTestsAtO1)
110+
skipCompileTestsAtO1 = utils.verifyChanges(compileTestsAtO1, "master")
111111

112112
def sourceCodePaths = ['src'].join(" ")
113-
skipRebuildingBinaries = utils.verifyChanges(sourceCodePaths)
113+
skipRebuildingBinaries = utils.verifyChanges(sourceCodePaths, "master")
114114
}
115115
}
116116
}

RELEASE-NOTES.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
STANC3 RELEASE NOTES
22
======================================================================
33

4+
v2.29.2 (25 March 2022)
5+
======================================================================
6+
7+
- Fixed a bug fix with `--O1` when arrays declared in transformed parameters or model were assigned data.
8+
- Added missing signatures for `normal_id_glm_lpdf`.
9+
- Fixed a compilation error with forward declarations.
10+
- Disabled AD level optimizations in `--O1` optimizations.
11+
- MIR pretty printing now always adds ( and ) around the ternary operator ?:
12+
413
v2.29.1 (2 March 2022)
514
======================================================================
615

0 commit comments

Comments
 (0)