Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What do Erlang release numbers mean?

Tags:

erlang

I've noticed Erlang releases with version numbers like R13B04, R14B, R15A, etc. What do each of the release number components mean? Can one infer anything about API changes based on the version numbers? For example, does an upgrade from R13 to R14 imply backwards incompatible API changes?

like image 258
mndrix Avatar asked Dec 12 '11 15:12

mndrix


People also ask

What is Erlang OTP 23?

Erlang/OTP 23.3 is the third and final maintenance patch package for OTP 23, with mostly bug fixes as well as a few improvements. A full list of bug fixes and improvements in the readme.

What is Erlang OTP 22?

Erlang/OTP 22 is a new major release with new features and improvements as well as incompatibilities. For a deeper dive into the highlights of the OTP 22 release, you can read our blog here: http://blog.erlang.org/OTP-22-Highlights/

What is Erlang JIT?

1 BeamAsm, the Erlang JIT. BeamAsm provides load-time conversion of Erlang BEAM instructions into native code on x86-64 and aarch64. This allows the loader to eliminate any instruction dispatching overhead and also specialize each instruction on their argument types.

What version of Erlang do I have?

The latest version of Erlang/OTP is 25.0. 3.


1 Answers

For example R14B04. R stands for Erlang/OPT Release. 14 is major version number. B stands for stable release (A is development/unstable). 04 is fourth minor version, i.e. fourth bugfix release in given major release. BEAM files and Erlang distribution protocol (ei) should always be compatible across two major version numbers. I.e. with current R14B04 instalation you should be able run .beam files compiled in R12 versions and R12 nodes should be able communicate with your new R14 nodes. API changes are much more conservative so you usually can be able compile and run source code from R7 ;-) Anyway experimental modules API can change even in minor version what happen in R13 with binary module if memory serves me right, but this really can happen only for experimental, unsupported or undocumented features.

like image 68
Hynek -Pichi- Vychodil Avatar answered Sep 27 '22 20:09

Hynek -Pichi- Vychodil