Skip to content

semver v0.31.0

Compare
Choose a tag to compare
@theory theory released this 17 Oct 22:50
· 45 commits to main since this release
d71ccaa
  • Added a workaround for an LLVM bitcode compile error. Thanks to @mark-s-a for the report (#40).
  • Removed --load-language from the options for running the tests, as it has not been needed since 9.1, we support 9.2 and higher, and it has been removed from Postgres 13.
  • Fixed an a collation error on Postgres 12 and higher. Thanks to Andrew for Marc Munro for the report and to Andrew Gierth for the fix (pgxn/pgxn-manager#67).
  • Prerelease parts are now compared in ASCII sort order as specified by the spec, no longer case-insensitively. This is a breaking change in the sense that 1.0.0-rc1 will now be considered greater than 1.0.0-RC1 rather than equivalent, but they're both still valid. See semver/semver#176 for the relevant discussion. Thanks to Andrew Gierth for the spot!