@@ -9,8 +9,6 @@ New language features
9
9
* Tuples (of integers, symbols, or bools) can now be used as type
10
10
parameters ([ #5164 ] ).
11
11
12
- * ` import module: name1, name2, ... ` ([ #5214 ] ).
13
-
14
12
* Default "inner" constructors now accept any arguments. Constructors that
15
13
look like ` MyType(a, b) = new(a, b) ` can and should be removed ([ #4026 ] ).
16
14
@@ -21,6 +19,9 @@ New language features
21
19
* When reloading code, types whose definitions have not changed can be
22
20
ignored in some cases.
23
21
22
+ * Binary ` ~ ` now parses as a vararg macro call to ` @~ ` .
23
+ For example ` x~y~z ` => ` @~ x y z ` ([ #4882 ] ).
24
+
24
25
New library functions
25
26
---------------------
26
27
@@ -110,7 +111,6 @@ Deprecated or removed
110
111
111
112
[ #4042 ] : https://github.com/JuliaLang/julia/issues/4042
112
113
[ #5164 ] : https://github.com/JuliaLang/julia/issues/5164
113
- [ #5214 ] : https://github.com/JuliaLang/julia/issues/5214
114
114
[ #4026 ] : https://github.com/JuliaLang/julia/issues/4026
115
115
[ #4799 ] : https://github.com/JuliaLang/julia/issues/4799
116
116
[ #4862 ] : https://github.com/JuliaLang/julia/issues/4862
@@ -139,6 +139,7 @@ Deprecated or removed
139
139
[ #987 ] : https://github.com/JuliaLang/julia/issues/987
140
140
[ #2345 ] : https://github.com/JuliaLang/julia/issues/2345
141
141
[ #5330 ] : https://github.com/JuliaLang/julia/issues/5330
142
+ [ #4882 ] : https://github.com/JuliaLang/julia/issues/4882
142
143
143
144
Julia v0.2.0 Release Notes
144
145
==========================
@@ -190,6 +191,8 @@ New language features
190
191
* Methods can be added to functions in other modules using dot syntax,
191
192
as in ` Foo.bar(x) = 0 ` .
192
193
194
+ * ` import module: name1, name2, ... ` ([ #5214 ] ).
195
+
193
196
* A semicolon is now allowed after an ` import ` or ` using ` statement ([ #4130 ] ).
194
197
195
198
* In an interactive session (REPL), you can use ` ;cmd ` to run ` cmd ` via an interactive
@@ -512,6 +515,7 @@ Too numerous to mention.
512
515
[ #4235 ] : https://github.com/JuliaLang/julia/issues/4235
513
516
[ #4284 ] : https://github.com/JuliaLang/julia/issues/4284
514
517
[ #4412 ] : https://github.com/JuliaLang/julia/issues/4412
518
+ [ #5214 ] : https://github.com/JuliaLang/julia/issues/5214
515
519
516
520
[ packages chapter ] : http://docs.julialang.org/en/latest/manual/packages/
517
521
[ sorting functions ] : http://docs.julialang.org/en/latest/stdlib/sort/
0 commit comments