Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: JuliaLang/julia
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: bcb056da75ce00e2917ef056115dfc7dce0a9e97
Choose a base ref
..
head repository: JuliaLang/julia
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2c10c9f6892d039760be0e4fa86eb5259f810ba6
Choose a head ref
Showing with 4 additions and 1 deletion.
  1. +3 −0 NEWS.md
  2. +1 −1 base/deprecated.jl
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -309,6 +309,9 @@ Deprecated or removed
* `Base.cpad` has been removed; use an appropriate combination of `rpad` and `lpad`
instead ([#23187]).

* `ctranspose` and `ctranspose!` have been deprecated in favor of `adjoint` and `adjoint!`,
respectively.

Julia v0.6.0 Release Notes
==========================

2 changes: 1 addition & 1 deletion base/deprecated.jl
Original file line number Diff line number Diff line change
@@ -1684,7 +1684,7 @@ end
# PR #22742: change in isapprox semantics
@deprecate rtoldefault(x,y) rtoldefault(x,y,0) false

# PR #??
# PR #23235
@deprecate ctranspose adjoint
@deprecate ctranspose! adjoint