chore(release): bump version to v1.6.0 - #10
Merged
Conversation
Bump all language ports and the SQLite extension from 1.5.0 to 1.6.0 for the buffer-reuse feature (new backward-compatible Builder API). Also fixes a stale runtime version: SQLITE_MSGPACK_VERSION was still "1.4.0" (the v1.5.0 bump missed it), so msgpack_version() now correctly reports 1.6.0 (1006000). Bumped: root + cpp CMakeLists, src/msgpack.c (header + version defines), js (package.json, package-lock.json, src/index.ts), rust (Cargo.toml, src/lib.rs), python (pyproject.toml, __init__.py), go (format.go). Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Release v1.6.0
Bumps every language port and the SQLite extension from 1.5.0 → 1.6.0 for the
new backward-compatible
Builderbuffer-reuse API merged in #9.Per semver this is a minor release (additive, fully backward compatible).
Version strings updated
CMakeLists.txt,src/msgpack.c(header +SQLITE_MSGPACK_VERSIONdefines)cpp/CMakeLists.txtjs/package.json,js/package-lock.json,js/src/index.tsrust/Cargo.toml,rust/src/lib.rspython/pyproject.toml,python/msgpack_blob/__init__.pygo/format.goDrive-by fix
SQLITE_MSGPACK_VERSIONwas still"1.4.0"(the v1.5.0 bump missed it), so theruntime
msgpack_version()SQL function under-reported the version. It nowcorrectly returns
1.6.0(SQLITE_MSGPACK_VERSION_NUMBER = 1006000), verifiedagainst the compiled
msgpack.so.After merge, tag
v1.6.0to cut the release.