File tree 2 files changed +4
-0
lines changed
2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ Standard library changes
68
68
* New ` ncodeunits(c::Char) ` method as a fast equivalent to ` ncodeunits(string(c)) ` ([ #29153 ] ).
69
69
* ` mean ` and ` var ` now handles the empty case ([ #29033 ] ).
70
70
* New ` sort!(::AbstractArray; dims) ` method that can sort the array along the ` dims ` dimension ([ #28902 ] ).
71
+ * ` range ` now accept ` stop ` as a positional argument ([ #28708 ] ).
71
72
72
73
Compiler/Runtime improvements
73
74
-----------------------------
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