Skip to content

Commit

Permalink
Drop 0.4 and 0.7 fixes
Browse files Browse the repository at this point in the history
* Drop remaining 0.4 support code
* Deprecate remaining 0.4 Compat bindings
* Remove tests for 0.4 Compat
* Do not run deprecated tests on 0.6
* Recover one test that's incorrectly moved to deprecated (StringVector)
* Add compat for at-nospecialize with tests
* Add compat for `read(..., String)` with tests
  • Loading branch information
yuyichao committed Jul 30, 2017
1 parent b566409 commit f705a0f
Show file tree
Hide file tree
Showing 5 changed files with 198 additions and 1,550 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,12 @@ Currently, the `@compat` macro supports the following syntaxes:
`Sys.islinux`, `Sys.isunix`, and `Sys.iswindows`, respectively. These are available in the `Compat.Sys`
submodule. ([#22182])

* `readstring` is replaced by methods of `read`. ([#22864])

`read(::IO, ::Type{String})`, `read(::AbstractString, ::Type{String})`,
and `read(::Cmd, ::Type{String})` are defined for 0.6 and below.


## New macros

* `@__DIR__` has been added ([#18380])
Expand All @@ -186,6 +192,8 @@ Currently, the `@compat` macro supports the following syntaxes:
vectorized function have migrated. These macros will be dropped when the
support for `0.6` is dropped from `Compat`.

* `@nospecialize` has been added ([#22666]).

## Other changes

* On versions of Julia that do not contain a Base.Threads module, Compat defines a Threads module containing a no-op `@threads` macro.
Expand Down Expand Up @@ -309,3 +317,5 @@ includes this fix. Find the minimum version from there.
[#22475]: https://github.com/JuliaLang/julia/issues/22475
[#22633]: https://github.com/JuliaLang/julia/issues/22633
[#22629]: https://github.com/JuliaLang/julia/issues/22629
[#22666]: https://github.com/JuliaLang/julia/pull/22666
[#22864]: https://github.com/JuliaLang/julia/pull/22864
Loading

0 comments on commit f705a0f

Please sign in to comment.