Skip to content

Commit c4c2419

Browse files
Add compat annotation
1 parent c40a6fb commit c4c2419

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

NEWS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Standard library changes
3131

3232
* The methods of `mktemp` and `mktempdir` which take a function body to pass temporary paths to no longer throw errors if the path is already deleted when the function body returns ([#33091]).
3333

34-
* A new `dropdims(f, args...; dims, kwargs...)` method computes the reduction `f` over the region described by `dims` and then drops those dimensions from the result ([#23500]).
34+
* A new `dropdims(f, args...; dims, kwargs...)` method computes the reduction `f` over the region described by `dims` and then drops those dimensions from the result ([#33130]).
3535

3636
#### Libdl
3737

base/abstractarraymath.jl

+3
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,9 @@ julia> dropdims(sum, abs2, a, dims=2)
111111
57.0
112112
94.0
113113
```
114+
115+
!!! compat "Julia 1.4"
116+
This function requires at least Julia 1.4.
114117
"""
115118
dropdims(f, args...; dims, kwargs...) = _dropdims(f(args...; kwargs..., dims=dims), dims)
116119

0 commit comments

Comments
 (0)