Skip to content

Commit b630522

Browse files
committed
build: bump up to v0.11.0
1 parent 3ca0064 commit b630522

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ Also check the changes in springql-core: <https://github.com/SpringQL/SpringQL/b
1313
<!-- markdownlint-disable MD024 -->
1414
## [Unreleased]
1515

16+
## [v0.11.0]
17+
1618
### For developers
1719

1820
- Rewrite with using springql-core's new APIs. ([#36](https://github.com/SpringQL/SpringQL-client-c/pull/36))
@@ -46,8 +48,9 @@ Depends on springql-core v0.7.1.
4648
[Semantic Versioning]: https://semver.org/
4749

4850
<!-- Versions -->
49-
[Unreleased]: https://github.com/SpringQL/SpringQL-client-c/compare/v0.9.0+2...HEAD
51+
[Unreleased]: https://github.com/SpringQL/SpringQL-client-c/compare/v0.11.0...HEAD
5052
[Released]: https://github.com/SpringQL/SpringQL-client-c/releases
53+
[v0.11.0]: https://github.com/SpringQL/SpringQL-client-c/compare/v0.9.0+2...v0.11.0
5154
[v0.9.0+2]: https://github.com/SpringQL/SpringQL-client-c/compare/v0.9.0...v0.9.0+2
5255
[v0.9.0]: https://github.com/SpringQL/SpringQL-client-c/compare/v0.8.0...v0.9.0
5356
[v0.8.0]: https://github.com/SpringQL/SpringQL-client-c/compare/v0.7.1...v0.8.0

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "springql-client-c"
3-
version = "0.9.0+2"
3+
version = "0.11.0"
44

55
authors = ["Sho Nakatani <[email protected]>"]
66
license = "MIT OR Apache-2.0"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ pub unsafe extern "C" fn spring_column_bool(
413413
/// - `CNull`: Column value is NULL.
414414
#[no_mangle]
415415
pub unsafe extern "C" fn spring_column_float(
416-
row: *const SpringRow,
416+
row: *const SpringRow,
417417
i_col: u16,
418418
out: *mut c_float,
419419
) -> SpringErrno {

0 commit comments

Comments
 (0)