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?
|
|
|||
|
|
|
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 ( |
|||
|
|
|
Each RX, such as R14 is a major release, so yes, code can be backwards incompatible. The incremental version which typically contain bugfixes and performance enhancements look like |
|||||
|