You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _posts/2012-05-25-elixir-v0-5-0-released.markdown
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ excerpt: We have finally released Elixir v0.5.0! This marks the first release si
10
10
11
11
We have finally released [Elixir](/) v0.5.0! This marks the first release since the language was rewritten. In this blog post, we will discuss what we achieved during this time and what are the next steps!
12
12
13
-
If you don't care about any of these, you can go straight to our [Getting Started guide](https://hexdocs.pm/elixir/introduction.html). If you do, keep on reading!
13
+
If you don't care about any of these, you can go straight to our [Getting Started guide](https://elixir.hexdocs.pm/introduction.html). If you do, keep on reading!
14
14
15
15
## Looking back
16
16
@@ -46,4 +46,4 @@ In parallel, we will improve our [documentation generation tool](https://github.
46
46
47
47
Finally, we will continue improving the Standard Library. Although Elixir's goal is to rely on Erlang the most as possible, we also want to provide a small Standard Library which makes better use of Elixir semantics. For the next weeks, we will focus on improving the IO and File manipulation modules. New data types may also appear, for example, ranges come to my mind.
48
48
49
-
Check out our [home page](/) and the [getting started guide](https://hexdocs.pm/elixir/introduction.html) for more information. Welcome aboard and grab a cup of Elixir, because you are certainly going to enjoy the ride!
49
+
Check out our [home page](/) and the [getting started guide](https://elixir.hexdocs.pm/introduction.html) for more information. Welcome aboard and grab a cup of Elixir, because you are certainly going to enjoy the ride!
Copy file name to clipboardExpand all lines: _posts/2012-08-01-elixir-v0-6-0-released.markdown
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,4 +25,4 @@ Our interactive shell (IEx) also had many improvements, thanks to the Elixir dev
25
25
26
26
That's it. For the next months, we will continue improving Elixir (you can see some ideas floating around in the [issues tracker](https://github.com/elixir-lang/elixir/issues)) but we will start to focus on other tools and libraries for the community.
27
27
28
-
Thank you and don't forget to [give Elixir a try](https://hexdocs.pm/elixir/introduction.html)!
28
+
Thank you and don't forget to [give Elixir a try](https://elixir.hexdocs.pm/introduction.html)!
Copy file name to clipboardExpand all lines: _posts/2012-11-18-elixir-v0-7-1-released.markdown
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ During this time traveling around, we have spoken at many conferences, as [Stran
16
16
17
17
In case you missed any of those conferences, [the talk I presented at Øredev is available and you can watch it now](https://vimeo.com/53221562). The slides are also available below.
18
18
19
-
If you want to hear more about Elixir at a conference or an event, please let us know. Thank you and don't forget to [give Elixir a try](https://hexdocs.pm/elixir/introduction.html)!
19
+
If you want to hear more about Elixir at a conference or an event, please let us know. Thank you and don't forget to [give Elixir a try](https://elixir.hexdocs.pm/introduction.html)!
Copy file name to clipboardExpand all lines: _posts/2012-12-04-elixir-v0-7-2-released.markdown
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,4 +51,4 @@ under some circumstances when using records.
51
51
52
52
Lastly, but not least importantly, I'd like to mention that we're very excited about how the community around Elixir is building up. Thank you all for being around and supporting us!
53
53
54
-
[Learn more about Elixir](https://hexdocs.pm/elixir/introduction.html)!
54
+
[Learn more about Elixir](https://elixir.hexdocs.pm/introduction.html)!
Copy file name to clipboardExpand all lines: _posts/2013-01-27-elixir-v0-8-0-released.markdown
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ And applications can be started directly from the command line as well:
19
19
20
20
elixir --app my_app
21
21
22
-
We have written a whole [guide chapter about creating OTP applications, supervisors and servers](https://hexdocs.pm/elixir/supervisor-and-application.html). Give it a try!
22
+
We have written a whole [guide chapter about creating OTP applications, supervisors and servers](https://elixir.hexdocs.pm/supervisor-and-application.html). Give it a try!
The example above contains a string with only two codepoints, [the codepoint fi](http://www.fileformat.info/info/unicode/char/FB01/index.htm) and [the codepoint n](http://www.fileformat.info/info/unicode/char/006E/index.htm). Look how Elixir properly capitalizes the string, returning a new string made of three codepoints (all ascii letters).
33
33
34
-
Learn more about [Unicode support with the String module](https://hexdocs.pm/elixir/String.html).
34
+
Learn more about [Unicode support with the String module](https://elixir.hexdocs.pm/String.html).
35
35
36
36
## AST metadata
37
37
@@ -71,11 +71,11 @@ When some code call the `unless` macro above, in previous Elixir versions, it wo
71
71
72
72
Elixir v0.8 ensures that the `unless` macro above will expand to the same `if` macro available when quoted, guaranteeing different libraries can integrate easily without imposing hidden requirements.
73
73
74
-
You can read more about [macros in the getting started guide](https://hexdocs.pm/elixir/case-cond-and-if.html) or [go deep into the quote macro docs](https://hexdocs.pm/elixir/Kernel.SpecialForms.html#quote/2).
74
+
You can read more about [macros in the getting started guide](https://elixir.hexdocs.pm/case-cond-and-if.html) or [go deep into the quote macro docs](https://elixir.hexdocs.pm/Kernel.SpecialForms.html#quote/2).
75
75
76
76
## A new way to manipulate pathnames
77
77
78
-
Elixir v0.8 contains a bit of house cleaning too. We have created [the Path module](https://hexdocs.pm/elixir/Path.html) to accommodate functions used to manipulate filesystem paths and have also added functions like [`System.tmp_dir` and `System.user_home`](https://hexdocs.pm/elixir/System.html) which are meant to work across different operating systems and are very handy when scripting.
78
+
Elixir v0.8 contains a bit of house cleaning too. We have created [the Path module](https://elixir.hexdocs.pm/Path.html) to accommodate functions used to manipulate filesystem paths and have also added functions like [`System.tmp_dir` and `System.user_home`](https://elixir.hexdocs.pm/System.html) which are meant to work across different operating systems and are very handy when scripting.
79
79
80
80
## The new HashDict
81
81
@@ -101,4 +101,4 @@ We continue actively working on Elixir and this release is the [result of our ef
101
101
102
102
Also, we previously announced Elixir is going to be released frequently, every 2 to 4 weeks. We have made a small detour to get v0.8.0 out of the door, but we are back to our regular schedule as of today!
103
103
104
-
[Celebrate with us and give Elixir a try](https://hexdocs.pm/elixir/introduction.html)!
104
+
[Celebrate with us and give Elixir a try](https://elixir.hexdocs.pm/introduction.html)!
Copy file name to clipboardExpand all lines: _posts/2013-04-29-elixir-v0-8-2-released.markdown
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,6 @@ defmodule MathTest do
45
45
end
46
46
```
47
47
48
-
You can learn more about [doctests on our documentation page](https://hexdocs.pm/ex_unit/ExUnit.DocTest.html) and get more information about our latest release [on the CHANGELOG](https://github.com/elixir-lang/elixir/blob/ed27611f48ba150404c95fe15f1d6058a4287330/CHANGELOG.md).
48
+
You can learn more about [doctests on our documentation page](https://ex-unit.hexdocs.pm/ExUnit.DocTest.html) and get more information about our latest release [on the CHANGELOG](https://github.com/elixir-lang/elixir/blob/ed27611f48ba150404c95fe15f1d6058a4287330/CHANGELOG.md).
49
49
50
-
If you are new to Elixir, [it's easy to get started with](https://hexdocs.pm/elixir/introduction.html)!
50
+
If you are new to Elixir, [it's easy to get started with](https://elixir.hexdocs.pm/introduction.html)!
Copy file name to clipboardExpand all lines: _posts/2013-05-23-elixir-v0-9-0-released.markdown
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -124,11 +124,11 @@ A special thanks to [Eric Meadows-Jonsson](https://github.com/ericmj) for implem
124
124
We have also many other smaller improvements:
125
125
126
126
* Our CLI now supports `--hidden` and `--cookie` flags which are useful for distributed modes;
127
-
* Our test framework, ExUnit, is now able to capture all the communication that happens with a registered IO device, like `:stdio` and `:stderr`, via [`ExUnit.CaptureIO`](https://hexdocs.pm/ex_unit/ExUnit.CaptureIO.html). This is very useful for testing how your software reacts to some inputs and what it prints to the terminal;
127
+
* Our test framework, ExUnit, is now able to capture all the communication that happens with a registered IO device, like `:stdio` and `:stderr`, via [`ExUnit.CaptureIO`](https://ex-unit.hexdocs.pm/ExUnit.CaptureIO.html). This is very useful for testing how your software reacts to some inputs and what it prints to the terminal;
128
128
*`IEx` now allows files to be imported into the shell with `import_file` and also loads `~/.iex` on startup for custom configuration;
129
129
* The `String`, `Enum` and `Dict` modules got more convenience functions that goes from checking unicode character validity to taking values out of a dictionary;
130
130
* And many, many more!
131
131
132
132
A huge thank you to our community for sending bug reports, providing bug fixes and contributing all those amazing features. And when are **you** joining us? :)
133
133
134
-
Give Elixir a try! You can start with our [getting started guide](https://hexdocs.pm/elixir/introduction.html), or [check this 30 minute video from PragProg](https://www.youtube.com/watch?v=a-off4Vznjs&feature=youtu.be) or buy the beta version of [Programming Elixir](https://pragprog.com/book/elixir/programming-elixir).
134
+
Give Elixir a try! You can start with our [getting started guide](https://elixir.hexdocs.pm/introduction.html), or [check this 30 minute video from PragProg](https://www.youtube.com/watch?v=a-off4Vznjs&feature=youtu.be) or buy the beta version of [Programming Elixir](https://pragprog.com/book/elixir/programming-elixir).
0 commit comments