Skip to content

Commit 35c1a03

Browse files
author
Pierre-Luc Gagné
committed
chore: release v4.8.0
1 parent 70d1bdf commit 35c1a03

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

CHANGELOG.md

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

99
## [Unreleased]
1010

11+
---
12+
13+
## [4.8.0] – 2026-04-04
14+
1115
### Added
1216

1317
- `function_id<"name">` — compile-time identifier for stored functions
@@ -438,7 +442,8 @@ to allow display width similarly to floating point types.
438442
- `ds_mysql::version` struct providing `major`, `minor`, `patch`, `value`, and `string`
439443
compile-time constants.
440444

441-
[Unreleased]: https://github.com/DisciplinedSoftware/DSMySQL/compare/v4.7.0...HEAD
445+
[Unreleased]: https://github.com/DisciplinedSoftware/DSMySQL/compare/v4.8.0...HEAD
446+
[4.8.0]: https://github.com/DisciplinedSoftware/DSMySQL/compare/v4.7.0...v4.8.0
442447
[4.7.0]: https://github.com/DisciplinedSoftware/DSMySQL/compare/v4.6.3...v4.7.0
443448
[4.6.3]: https://github.com/DisciplinedSoftware/DSMySQL/compare/v4.6.2...v4.6.3
444449
[4.6.2]: https://github.com/DisciplinedSoftware/DSMySQL/compare/v4.6.1...v4.6.2

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.7.0
4+
VERSION 4.8.0
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
@@ -17,14 +17,14 @@ namespace ds_mysql {
1717
/// `version_generated.hpp` is present (e.g. raw-header, non-CMake usage).
1818
struct version {
1919
static constexpr std::uint32_t major = 4;
20-
static constexpr std::uint32_t minor = 7;
20+
static constexpr std::uint32_t minor = 8;
2121
static constexpr std::uint32_t patch = 0;
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.7.0";
27+
static constexpr std::string_view string = "4.8.0";
2828
};
2929

3030
} // namespace ds_mysql

0 commit comments

Comments
 (0)