Skip to content

Commit 9acc2e1

Browse files
author
Pierre-Luc Gagné
committed
chore: release v3.0.0
1 parent 45ef34a commit 9acc2e1

3 files changed

Lines changed: 11 additions & 6 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+
## [3.0.0] – 2026-03-28
14+
1115
### Added
1216

1317
- `check_id<"name">` — compile-time CHECK constraint name type; pass as second argument to `table_constraint::check` to emit a named constraint
@@ -239,7 +243,8 @@ to allow display width similarly to floating point types.
239243
- `ds_mysql::version` struct providing `major`, `minor`, `patch`, `value`, and `string`
240244
compile-time constants.
241245

242-
[Unreleased]: https://github.com/DisciplinedSoftware/DSMySQL/compare/v2.1.1...HEAD
246+
[Unreleased]: https://github.com/DisciplinedSoftware/DSMySQL/compare/v3.0.0...HEAD
247+
[3.0.0]: https://github.com/DisciplinedSoftware/DSMySQL/compare/v2.1.1...v3.0.0
243248
[2.1.1]: https://github.com/DisciplinedSoftware/DSMySQL/compare/v2.1.0...v2.1.1
244249
[2.1.0]: https://github.com/DisciplinedSoftware/DSMySQL/compare/v2.0.0...v2.1.0
245250
[2.0.0]: https://github.com/DisciplinedSoftware/DSMySQL/compare/v1.1.0...v2.0.0

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 2.1.1
4+
VERSION 3.0.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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ namespace ds_mysql {
1616
/// This checked-in fallback is used only when no build-system generated
1717
/// `version_generated.hpp` is present (e.g. raw-header, non-CMake usage).
1818
struct version {
19-
static constexpr std::uint32_t major = 2;
20-
static constexpr std::uint32_t minor = 1;
21-
static constexpr std::uint32_t patch = 1;
19+
static constexpr std::uint32_t major = 3;
20+
static constexpr std::uint32_t minor = 0;
21+
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 = "2.1.1";
27+
static constexpr std::string_view string = "3.0.0";
2828
};
2929

3030
} // namespace ds_mysql

0 commit comments

Comments
 (0)