←back to thread

151 points fastest963 | 1 comments | | HN request time: 0s | source
Show context
hoistbypetard ◴[] No.45772532[source]
My instant reaction was: "Wait?! They weren't immutable before?"

I'm glad they're doing this, and it's an unpleasant surprise that they didn't already work this way. I don't understand why they allow mutable releases.

replies(6): >>45772557 #>>45772741 #>>45772761 #>>45773634 #>>45773953 #>>45774010 #
edflsafoiewq ◴[] No.45773953[source]
Mutable releases are used for continuous/nightly builds.
replies(1): >>45775962 #
1. jsiepkes ◴[] No.45775962[source]
In Java with Maven these have a special suffix, "-SNAPSHOT". So "1.0.0-SNAPSHOT". Releases, like "1.0.0" are immutable once released. I always thought that was a pretty sane model.