I have read in Joe Amstrong book Programing Erlang about maps as being a new feature in Erlang R17. I tried to look for for a R17 compiler but i couldn't find one. I even compiled the source from git hub but the version that erl shell reports is R16B3. Has R17 been released yet ? Or the book speaks about a release that will come in the future ?
4 Answers
Erlang R17 hasn't been released yet but if you'd like to play with the new features, you can clone:
https://github.com/erlang/otp/tree/master for the latest commits of R17.
https://github.com/erlang/otp/tree/egil/maps/eep-implementation for the new maps feature.
Maps haven't been merged/released to Github under the Master branch yet, so you'll have to build that one separately if you want to play with them.
EDIT: The Erlang team has released a few release candidates, the latest of which can be found here.

- 3,415
- 1
- 23
- 39
Erlang version 17 will likely be released in February 2014.
Update: in a message to the erlang-questions mailing list, a member of the OTP team stated they're planning to release Erlang/OTP 17.0 in March 2014.

- 19,847
- 3
- 31
- 46
-
2Where we can find a roadmap for Erlang development? So we can see what is going on and what is coming next. – Chiron Jan 21 '14 at 13:52
-
There's some details for the 17.0 release in this message to the erlang-patches list: http://erlang.org/pipermail/erlang-patches/2014-February/004623.html . As for a roadmap, there really isn't one, but there is a development page at http://www.erlang.org/development/ that shows proposed updates and graduated patches. – Steve Vinoski Feb 20 '14 at 14:30
There is RC1 release here at https://github.com/erlang/otp/releases you can download zip/tar and compile it or you can still clone git

- 11
- 1