@@ -67,6 +67,9 @@ Currently, the `@compat` macro supports the following syntaxes:
67
67
includes expressions with lower precedence than ` == ` you should enclose it in parentheses ` x .= (y) ` to ensure the
68
68
correct order of evaluation.
69
69
70
+ * ` @compat Array{<:Real} ` and similar uses of ` <:T ` to define a set of parameterized types ([ #20414 ] ).
71
+ In 0.4 and 0.5, this only works for non-nested usages (e.g. you can't define ` Array{<:Array{<:Real}} ` ).
72
+
70
73
## Type Aliases
71
74
72
75
* In 0.5, ` ASCIIString ` and ` ByteString ` were deprecated, and ` UTF8String ` was renamed to the (now concrete) type ` String ` .
@@ -280,10 +283,14 @@ includes this fix. Find the minimum version from there.
280
283
[ #17302 ] : https://github.com/JuliaLang/julia/issues/17302
281
284
[ #17323 ] : https://github.com/JuliaLang/julia/issues/17323
282
285
[ #17510 ] : https://github.com/JuliaLang/julia/issues/17510
286
+ [ #17623 ] : https://github.com/JuliaLang/julia/issues/17623
283
287
[ #18380 ] : https://github.com/JuliaLang/julia/issues/18380
284
288
[ #18484 ] : https://github.com/JuliaLang/julia/issues/18484
285
289
[ #18510 ] : https://github.com/JuliaLang/julia/issues/18510
286
290
[ #18977 ] : https://github.com/JuliaLang/julia/issues/18977
287
291
[ #19088 ] : https://github.com/JuliaLang/julia/issues/19088
288
292
[ #19246 ] : https://github.com/JuliaLang/julia/issues/19246
293
+ [ #19841 ] : https://github.com/JuliaLang/julia/issues/19841
289
294
[ #19950 ] : https://github.com/JuliaLang/julia/issues/19950
295
+ [ #20022 ] : https://github.com/JuliaLang/julia/issues/20022
296
+ [ #20414 ] : https://github.com/JuliaLang/julia/issues/20414
0 commit comments