File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -75,6 +75,7 @@ Standard library changes
75
75
* New ` ncodeunits(c::Char) ` method as a fast equivalent to ` ncodeunits(string(c)) ` ([ #29153 ] ).
76
76
* ` mean ` and ` var ` now handles the empty case ([ #29033 ] ).
77
77
* New ` sort!(::AbstractArray; dims) ` method that can sort the array along the ` dims ` dimension ([ #28902 ] ).
78
+ * ` range ` now accept ` stop ` as a positional argument ([ #28708 ] ).
78
79
79
80
Compiler/Runtime improvements
80
81
-----------------------------
Original file line number Diff line number Diff line change @@ -60,6 +60,9 @@ automatically such that the elements are `step` spaced (a [`StepRange`](@ref)).
60
60
61
61
`stop` may be specified as either a positional or keyword argument.
62
62
63
+ !!! compat "Julia 1.1"
64
+ `stop` as a positional argument requires at least Julia 1.1.
65
+
63
66
# Examples
64
67
```jldoctest
65
68
julia> range(1, length=100)
You can’t perform that action at this time.
0 commit comments