Skip to content
This repository was archived by the owner on Apr 12, 2019. It is now read-only.

Commit 943e54a

Browse files
committed
Fix location of 0.7 news items accidentally placed in 0.6 section. [ci skip]
1 parent cfd8d9f commit 943e54a

File tree

2 files changed

+18
-17
lines changed

2 files changed

+18
-17
lines changed

HISTORY.md

-17
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,6 @@ Breaking changes
9393
9494
This section lists changes that do not have deprecation warnings.
9595
96-
* The constructor of `SubString` now checks if the requsted view range
97-
is defined by valid indices in the parent `AbstractString` ([#22511]).
98-
9996
* `readline`, `readlines` and `eachline` return lines without line endings by default.
10097
You *must* use `readline(s, chomp=false)`, etc. to get the old behavior where
10198
returned lines include trailing end-of-line character(s) ([#19944]).
@@ -427,8 +424,6 @@ Library improvements
427424
`enumerate(IndexLinear, iterable)` yields linear indices and
428425
`enumerate(IndexCartesian, iterable)` yields cartesian indices ([#16378]).
429426
430-
* Jump to first/last history entries in the REPL via "Alt-<" and "Alt->" ([#22829]).
431-
432427
Compiler/Runtime improvements
433428
-----------------------------
434429
@@ -616,20 +611,12 @@ Deprecated or removed
616611
* Parsing string dates from a `Dates.DateFormat` object has been deprecated as part of a
617612
larger effort toward faster, more extensible date parsing ([#20952]).
618613
619-
* `EnvHash` has been renamed to `EnvDict` ([#24167]).
620-
621614
* `linspace` and `logspace` now require an explicit number of elements to be supplied rather than defaulting to `50`.
622615
623-
* Introduced the `empty` function, the functional pair to `empty!` which returns a new,
624-
empty container ([#24390]).
625-
626616
* `similar(::Associative)` has been deprecated in favor of `empty(::Associative)`, and
627617
`similar(::Associative, ::Pair{K, V})` has been deprecated in favour of
628618
`empty(::Associative, K, V)` ([#24390]).
629619
630-
* `indices(a)` and `indices(a,d)` have been deprecated in favor of `axes(a)` and
631-
`axes(a, d)` ([#25057]).
632-
633620
Command-line option changes
634621
---------------------------
635622
@@ -3038,8 +3025,4 @@ Too numerous to mention.
30383025
[#20952]: https://github.com/JuliaLang/julia/issues/20952
30393026
[#21183]: https://github.com/JuliaLang/julia/issues/21183
30403027
[#21818]: https://github.com/JuliaLang/julia/issues/21818
3041-
[#22511]: https://github.com/JuliaLang/julia/issues/22511
3042-
[#22829]: https://github.com/JuliaLang/julia/issues/22829
3043-
[#24167]: https://github.com/JuliaLang/julia/issues/24167
30443028
[#24390]: https://github.com/JuliaLang/julia/issues/24390
3045-
[#25057]: https://github.com/JuliaLang/julia/issues/25057

NEWS.md

+18
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,9 @@ This section lists changes that do not have deprecation warnings.
170170

171171
* `finalizer(function, object)` now returns `object` rather than `nothing` ([#24679]).
172172

173+
* The constructor of `SubString` now checks if the requsted view range
174+
is defined by valid indices in the parent `AbstractString` ([#22511]).
175+
173176
* Macro calls with `for` expressions are now parsed as generators inside
174177
function argument lists ([#18650]). Examples:
175178

@@ -335,6 +338,11 @@ Library improvements
335338

336339
* `Irrational` is now a subtype of `AbstractIrrational` ([#24245]).
337340

341+
* Introduced the `empty` function, the functional pair to `empty!` which returns a new,
342+
empty container ([#24390]).
343+
344+
* Jump to first/last history entries in the REPL via "Alt-<" and "Alt->" ([#22829]).
345+
338346
* The function `chop` now accepts two arguments `head` and `tail` allowing to specify
339347
number of characters to remove from the head and tail of the string ([#24126]).
340348

@@ -484,6 +492,11 @@ Deprecated or removed
484492
Instead, reshape the array or add trailing indices so the dimensionality and number of indices
485493
match ([#14770], [#23628]).
486494

495+
* `indices(a)` and `indices(a,d)` have been deprecated in favor of `axes(a)` and
496+
`axes(a, d)` ([#25057]).
497+
498+
* `EnvHash` has been renamed to `EnvDict` ([#24167]).
499+
487500
* Uninitialized `Array` constructors of the form
488501
`Array[{T,N}](shape...)` have been deprecated in favor of equivalents
489502
accepting `uninitialized` (an alias for `Uninitialized()`) as their first argument,
@@ -909,6 +922,7 @@ Command-line option changes
909922
[#22350]: https://github.com/JuliaLang/julia/issues/22350
910923
[#22390]: https://github.com/JuliaLang/julia/issues/22390
911924
[#22496]: https://github.com/JuliaLang/julia/issues/22496
925+
[#22511]: https://github.com/JuliaLang/julia/issues/22511
912926
[#22523]: https://github.com/JuliaLang/julia/issues/22523
913927
[#22532]: https://github.com/JuliaLang/julia/issues/22532
914928
[#22572]: https://github.com/JuliaLang/julia/issues/22572
@@ -933,6 +947,7 @@ Command-line option changes
933947
[#22801]: https://github.com/JuliaLang/julia/issues/22801
934948
[#22814]: https://github.com/JuliaLang/julia/issues/22814
935949
[#22825]: https://github.com/JuliaLang/julia/issues/22825
950+
[#22829]: https://github.com/JuliaLang/julia/issues/22829
936951
[#22847]: https://github.com/JuliaLang/julia/issues/22847
937952
[#22868]: https://github.com/JuliaLang/julia/issues/22868
938953
[#22880]: https://github.com/JuliaLang/julia/issues/22880
@@ -989,6 +1004,7 @@ Command-line option changes
9891004
[#24047]: https://github.com/JuliaLang/julia/issues/24047
9901005
[#24126]: https://github.com/JuliaLang/julia/issues/24126
9911006
[#24153]: https://github.com/JuliaLang/julia/issues/24153
1007+
[#24167]: https://github.com/JuliaLang/julia/issues/24167
9921008
[#24187]: https://github.com/JuliaLang/julia/issues/24187
9931009
[#24221]: https://github.com/JuliaLang/julia/issues/24221
9941010
[#24240]: https://github.com/JuliaLang/julia/issues/24240
@@ -1000,6 +1016,7 @@ Command-line option changes
10001016
[#24320]: https://github.com/JuliaLang/julia/issues/24320
10011017
[#24356]: https://github.com/JuliaLang/julia/issues/24356
10021018
[#24362]: https://github.com/JuliaLang/julia/issues/24362
1019+
[#24390]: https://github.com/JuliaLang/julia/issues/24390
10031020
[#24396]: https://github.com/JuliaLang/julia/issues/24396
10041021
[#24413]: https://github.com/JuliaLang/julia/issues/24413
10051022
[#24414]: https://github.com/JuliaLang/julia/issues/24414
@@ -1033,4 +1050,5 @@ Command-line option changes
10331050
[#25037]: https://github.com/JuliaLang/julia/issues/25037
10341051
[#25046]: https://github.com/JuliaLang/julia/issues/25046
10351052
[#25056]: https://github.com/JuliaLang/julia/issues/25056
1053+
[#25057]: https://github.com/JuliaLang/julia/issues/25057
10361054
[#25088]: https://github.com/JuliaLang/julia/issues/25088

0 commit comments

Comments
 (0)