Skip to content

Commit 4ebac24

Browse files
committed
Remove patch release announcements
1 parent 8d29173 commit 4ebac24

5 files changed

Lines changed: 11 additions & 137 deletions

_posts/2012-05-25-elixir-v0-5-0-released.markdown

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@ title: Elixir v0.5.0 released
44
authors:
55
- José Valim
66
category: Releases
7-
excerpt: 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!
7+
excerpt: Let's discuss the goals behind the language first release
88

99
---
1010

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!
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 the goals behind the language and what are the next steps!
1212

1313
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!
1414

1515
## Looking back
1616

17-
I have started working in Elixir at the beginning of 2011. Around April that year, I had released the version v0.3.0 that was stable enough for me to start using in my own projects. However, after using it in a couple projects quickly reviewed that I was not happy with some of the design decisions taken early on.
17+
I have started working in Elixir at the beginning of 2011. Around April that year, I had tagged version v0.3.0 that was stable enough for me to start using in my own projects. However, after using it in a couple projects, I was not happy with some of the design decisions taken early on.
1818

19-
At that time, Elixir attempted to be a considerable departure from Erlang and that revealed very fast to a bad design decision because, in order to use any Erlang module, we first would have to provide an Elixir wrapper for it. Any new function or module in new Erlang releases would have to be wrapped first in Elixir, which means we would always play catch up with Erlang.
19+
At that time, Elixir attempted to be a considerable departure from Erlang and that quickly revealed to be a poor choice: in order to use any Erlang module, we first would have to provide an Elixir wrapper for it. Any new function or module in new Erlang releases would have to be wrapped first in Elixir, which means we would always play catch up with Erlang.
2020

21-
After not feeling productive enough with that Elixir version, I have decided to take a break from Elixir to study old, new and emerging languages. The challenge was to not re-invent Erlang as a language, but how to provide the productivity and flexibility I expect from Elixir while staying a 100% compatible with Erlang.
21+
After not feeling productive enough with that Elixir version, I have decided to take a break from Elixir to study old, new, and emerging languages. The challenge was to not re-invent Erlang as a language, but how to provide the productivity and flexibility I expect from Elixir while staying a 100% compatible with Erlang.
2222

2323
It was around October 2011, during a short stay in San Francisco, that I came up with what would be [the foundation of Elixir's current version](https://github.com/josevalim/lego-lang) with the help of Yehuda Katz. Development of the new Elixir version started a few days before 2012 and continued steady when the new year came in.
2424

@@ -28,17 +28,17 @@ Around February of that year, feeling confident enough about the direction the l
2828

2929
One of the goals we have set was to have a good website and documentation before the next official release. With the help of the Plataformatec team, we created a logo for Elixir and put this website live.
3030

31-
At the same time, [we were working on pygments support](https://web.archive.org/web/20160804045840/https://bitbucket.org/birkenfeld/pygments-main/pull-requests/57/add-elixir-and-elixir-console-lexers), a [documentation generation tool](https://github.com/elixir-lang/ex_doc) and many others. Soon, GitHub was able to syntax highlight Elixir code and [our API documentation was online](/).
31+
[We also worked on pygments support](https://web.archive.org/web/20160804045840/https://bitbucket.org/birkenfeld/pygments-main/pull-requests/57/add-elixir-and-elixir-console-lexers), a [documentation generation tool](https://github.com/elixir-lang/ex_doc) and many others. Soon, GitHub was able to syntax highlight Elixir code and our API documentation went live.
3232

3333
At the same time, people started to gather around #elixir-lang channel on irc.freenode.net (now migrated to #elixir on irc.libera.chat) to [play with Elixir](https://github.com/elixir-lang/elixir/tree/main/lib/mix), [start their](https://github.com/guedes/exdate) [own projects](https://github.com/yrashk/validatex) and [tutorials](https://github.com/alco/elixir/wiki/Erlang-Syntax:-A-Crash-Course).
3434

35-
Although the initial release was scheduled to April 2012, the feedback from such early developers forced us to review some design and syntax decisions and were extremely important to shape the language as it is today.
35+
Although the initial release was scheduled to April 2012, the feedback from early developers forced us to review some architectural and syntax decisions, which were extremely important to shape the language as it is today.
3636

37-
With v0.5.0 finally out, we are committing to a stable syntax and a basic standard library. In the last couple days before the release, we have been working on streamlining the documentation and ensure Elixir works on Mac, Linux and Windows machines!
37+
With v0.5.0 finally out, we are committing to a stable syntax and a basic standard library. In the last couple days before the release, we have been working on streamlining the documentation and ensuring Elixir works out-of-the-box on Mac, Linux and Windows machines!
3838

3939
## Looking forward
4040

41-
There are still many, many things to do! In the next months, we will continue working on growing our community, talks and other documentation material. A huge thanks to [Alexei Sholik](https://twitter.com/true_droid) who is moving this area forward.
41+
There are still many, many things to do! In the next months, we will continue working on growing our community, promoting talks, and other documentation material. A huge thanks to [Alexei Sholik](https://twitter.com/true_droid) who is moving this area forward.
4242

4343
We will also work on better integration and documentation on building Erlang systems. Erlang ships with the [Open Telecom Platform](https://en.wikipedia.org/wiki/Open_Telecom_Platform) which provides many tools to build distributed applications. In v0.5.0, all these tools are already available but we want to make the build process even simpler.
4444

_posts/2012-08-01-elixir-v0-6-0-released.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ excerpt: We have finally released Elixir v0.6.0! This release includes a build t
88

99
---
1010

11-
We have finally released [Elixir](/) v0.6.0! This release includes a build tool called Mix, support for Erlang typespecs, many improvements to IEx and improved IO, File and Macro support.
11+
We have finally released Elixir v0.6.0! This release includes a build tool called Mix, support for Erlang typespecs, many improvements to IEx and improved IO, File and Macro support.
1212

1313
## What's new
1414

15-
When [we released version v0.5.0](/blog/2012/05/25/elixir-v0-5-0-released/), we have set three major goals for release v0.6.0:
15+
With Elixir's first public release, we have set three major goals for release v0.6.0:
1616

1717
1. Provide a build tool that makes it easy to create, compile and test Elixir projects;
1818
2. Support [Erlang typespecs](https://www.erlang.org/doc/reference_manual/typespec.html);

_posts/2012-11-18-elixir-v0-7-1-released.markdown

Lines changed: 0 additions & 22 deletions
This file was deleted.

_posts/2012-12-04-elixir-v0-7-2-released.markdown

Lines changed: 0 additions & 54 deletions
This file was deleted.

_posts/2013-04-29-elixir-v0-8-2-released.markdown

Lines changed: 0 additions & 50 deletions
This file was deleted.

0 commit comments

Comments
 (0)