The release tar changed without a version bump #1124
-
Why is this bad?
Why check for hashes or use version numbers at all if they don't matter anymore? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
what is the difference between libsodium-1.0.18-stable.tar.gz and libsodium-1.0.18.tar.gz? |
Beta Was this translation helpful? Give feedback.
-
The minisign command is missing a |
Beta Was this translation helpful? Give feedback.
-
The difference is documented here: https://download.libsodium.org/libsodium/releases/README.html The For example, Visual Studio 2022 was just released. Required scripts to build packages for it were made, so these changes went into WebAssembly runtimes kept changing the way their command-line arguments work, so changes were made to keep the test suite run after these changes. That went into Same for internal documentation updates, compilation fixes or minor performance improvements. That goes into This is like your Linux distribution, that occasionally gets small non-breaking updates until the next point release. Or the If you want to start a new project today, using If you want to occasionally build packages, use point releases. You're free to ignore the |
Beta Was this translation helpful? Give feedback.
The difference is documented here:
https://download.libsodium.org/libsodium/releases/README.html
The
stable
branch doesn't add or remove features over point releases.For example, Visual Studio 2022 was just released. Required scripts to build packages for it were made, so these changes went into
stable
. They don't justify a new point release.WebAssembly runtimes kept changing the way their command-line arguments work, so changes were made to keep the test suite run after these changes. That went into
stable
. No need for a new point release.Same for internal documentation updates, compilation fixes or minor performance improvements. That goes into
stable
.This is like your Linux distrib…