Skip to content

Commit 54eff20

Browse files
author
Pierre-Luc Gagné
committed
chore: release v4.6.1
1 parent 902f978 commit 54eff20

3 files changed

Lines changed: 11 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ Versioning follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
1010

1111
---
1212

13+
## [4.6.1] – 2026-03-30
14+
15+
- Add default initialization for `alias_order_entry` members.
16+
17+
---
18+
1319
## [4.6.0] – 2026-03-30
1420

1521
### Added
@@ -370,7 +376,8 @@ to allow display width similarly to floating point types.
370376
- `ds_mysql::version` struct providing `major`, `minor`, `patch`, `value`, and `string`
371377
compile-time constants.
372378

373-
[Unreleased]: https://github.com/DisciplinedSoftware/DSMySQL/compare/v4.6.0...HEAD
379+
[Unreleased]: https://github.com/DisciplinedSoftware/DSMySQL/compare/v4.6.1...HEAD
380+
[4.6.1]: https://github.com/DisciplinedSoftware/DSMySQL/compare/v4.6.0...v4.6.1
374381
[4.6.0]: https://github.com/DisciplinedSoftware/DSMySQL/compare/v4.5.0...v4.6.0
375382
[4.5.0]: https://github.com/DisciplinedSoftware/DSMySQL/compare/v4.4.1...v4.5.0
376383
[4.4.1]: https://github.com/DisciplinedSoftware/DSMySQL/compare/v4.4.0...v4.4.1

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.25)
22

33
project(DSMySQL
4-
VERSION 4.6.0
4+
VERSION 4.6.1
55
DESCRIPTION "A portable C++23 type-safe MySQL query builder and database wrapper"
66
LANGUAGES CXX
77
)

lib/include/ds_mysql/version.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ namespace ds_mysql {
1818
struct version {
1919
static constexpr std::uint32_t major = 4;
2020
static constexpr std::uint32_t minor = 6;
21-
static constexpr std::uint32_t patch = 0;
21+
static constexpr std::uint32_t patch = 1;
2222

2323
/// Packed integer: major * 10000 + minor * 100 + patch.
2424
static constexpr std::uint32_t value = major * 10'000u + minor * 100u + patch;
2525

2626
/// Canonical fallback string for non-generated builds.
27-
static constexpr std::string_view string = "4.6.0";
27+
static constexpr std::string_view string = "4.6.1";
2828
};
2929

3030
} // namespace ds_mysql

0 commit comments

Comments
 (0)