We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97488a0 commit 72f6700Copy full SHA for 72f6700
sxbp/serialise.c
@@ -128,8 +128,9 @@ sxbp_serialise_result_t sxbp_load_spiral(
128
.minor = load_uint16_t(&buffer, 6),
129
.patch = load_uint16_t(&buffer, 8),
130
};
131
- // we don't accept anything less than v0.25.0, so the min is v0.25.0
132
- sxbp_version_t min_version = { .major = 0, .minor = 25, .patch = 0, };
+ // we don't accept anything less than v0.26.0, so the min is v0.26.0
+ // TODO: Add this as a library constant - to add in next minor release
133
+ sxbp_version_t min_version = { .major = 0, .minor = 26, .patch = 0, };
134
// check for version compatibility
135
if(sxbp_version_less_than(buffer_version, min_version)) {
136
// check failed
0 commit comments