Skip to content

Commit 0f873ac

Browse files
author
Pierre-Luc Gagné
committed
chore: release v2.1.0
1 parent 193c91f commit 0f873ac

3 files changed

Lines changed: 12 additions & 4 deletions

File tree

CHANGELOG.md

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

1111
---
1212

13+
## [2.1.0] – 2026-03-24
14+
15+
---
16+
1317
### Added
1418

1519
- Add int_type<W>, int_unsigned_type<W>, bigint_type<W>, and bigint_unsigned_type<W>
1620
to allow display width similarly to floating point types.
21+
22+
### Fixed
23+
1724
- Fixed table_attributes specialization that was broken
1825

1926
## [2.0.0] – 2026-03-23
@@ -69,7 +76,8 @@ to allow display width similarly to floating point types.
6976
- `ds_mysql::version` struct providing `major`, `minor`, `patch`, `value`, and `string`
7077
compile-time constants.
7178

72-
[Unreleased]: https://github.com/DisciplinedSoftware/DSMySQL/compare/v2.0.0...HEAD
79+
[Unreleased]: https://github.com/DisciplinedSoftware/DSMySQL/compare/v2.1.0...HEAD
80+
[2.1.0]: https://github.com/DisciplinedSoftware/DSMySQL/compare/v2.0.0...v2.1.0
7381
[2.0.0]: https://github.com/DisciplinedSoftware/DSMySQL/compare/v1.1.0...v2.0.0
7482
[1.1.0]: https://github.com/DisciplinedSoftware/DSMySQL/releases/tag/v1.1.0
7583
[1.0.0]: https://github.com/DisciplinedSoftware/DSMySQL/releases/tag/v1.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.0.0
4+
VERSION 2.1.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 = 2;
20-
static constexpr std::uint32_t minor = 0;
20+
static constexpr std::uint32_t minor = 1;
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 = "2.0.0";
27+
static constexpr std::string_view string = "2.1.0";
2828
};
2929

3030
} // namespace ds_mysql

0 commit comments

Comments
 (0)