Skip to content

Commit acd7469

Browse files
authored
chore: bump ReactantCore version (#270)
* chore: bump ReactantCore version * chore: bump version for release * fix: remove unused type vars * fix: remove specialization in traced_if
1 parent 5a60501 commit acd7469

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ LinearAlgebra = "1.10"
4141
NNlib = "0.9"
4242
OrderedCollections = "1"
4343
Preferences = "1.4"
44-
ReactantCore = "0.1.1"
44+
ReactantCore = "0.1.2"
4545
Reactant_jll = "0.0.24"
4646
Scratch = "1.2"
4747
Statistics = "1.10"

lib/ReactantCore/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ReactantCore"
22
uuid = "a3311ec8-5e00-46d5-b541-4f83e724a433"
33
authors = ["William Moses <[email protected]>", "Valentin Churavy <[email protected]>", "Sergio Sánchez Ramírez <[email protected]>", "Paul Berg <[email protected]>", "Avik Pal <[email protected]>"]
4-
version = "0.1.1"
4+
version = "0.1.2"
55

66
[deps]
77
ExpressionExplorer = "21656369-7473-754a-2065-74616d696c43"

lib/ReactantCore/src/ReactantCore.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -360,11 +360,11 @@ function remove_shortcircuiting(expr)
360360
end
361361

362362
# Generate this dummy function and later we remove it during tracing
363-
function traced_if(cond, true_fn::TFn, false_fn::FFn, args) where {TFn,FFn}
363+
function traced_if(cond, true_fn, false_fn, args)
364364
return cond ? true_fn(args) : false_fn(args)
365365
end
366366

367-
function traced_while(cond_fn, body_fn, args) where {CFn,BFn}
367+
function traced_while(cond_fn, body_fn, args)
368368
while cond_fn(args...)
369369
args = body_fn(args...)
370370
end

0 commit comments

Comments
 (0)