Skip to content

Commit cac3917

Browse files
committed
Remove typed constructors and bump version
1 parent 197d2e6 commit cac3917

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ADTypes"
22
uuid = "47edcb42-4c32-4615-8424-f2b9edc5f35b"
33
authors = ["Vaibhav Dixit <vaibhavyashdixit@gmail.com>, Guillaume Dalle and contributors"]
4-
version = "1.10.0"
4+
version = "1.11.0"
55

66
[deps]
77
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"

src/dense.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,6 @@ Defined by [ADTypes.jl](https://github.com/SciML/ADTypes.jl).
207207
# Constructors
208208
209209
AutoTaylorDiff(; order = 1)
210-
AutoTaylorDiff{order}()
211210
212211
# Type parameters
213212
@@ -223,7 +222,7 @@ mode(::AutoTaylorDiff) = ForwardMode()
223222

224223
function Base.show(io::IO, ::AutoTaylorDiff{order}) where {order}
225224
print(io, AutoTaylorDiff, "(")
226-
print(io, "tag=", repr(order; context = io))
225+
print(io, "order=", repr(order; context = io))
227226
print(io, ")")
228227
end
229228

0 commit comments

Comments
 (0)