5

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 ?

Ilie NEACSU
  • 530
  • 3
  • 12

4 Answers4

7

Erlang R17 hasn't been released yet but if you'd like to play with the new features, you can clone:

  1. https://github.com/erlang/otp/tree/master for the latest commits of R17.

  2. 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.

Alex Moore
  • 3,415
  • 1
  • 23
  • 39
6

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.

Steve Vinoski
  • 19,847
  • 3
  • 31
  • 46
  • 2
    Where 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
1

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

1

Erlang/OTP 17.0 was released on 9th April 2014.

legoscia
  • 39,593
  • 22
  • 116
  • 167