Skip to content

Commit fb63c66

Browse files
committed
bump version to TinyORM v0.30.0 and tom v0.5.4
- also bump version to TinyUtils v0.3.0
1 parent d1a0d43 commit fb63c66

File tree

8 files changed

+14
-14
lines changed

8 files changed

+14
-14
lines changed

NOTES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Increase/bump the release version:
22
----------------------------------
33

4-
- just simply search the current version number in all files eg. 0.29.3
4+
- just simply search the current version number in all files eg. 0.30.0
55

66
- increase in the following files
77

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111

1212
[![www.tinyorm.org][docs-badge]][docs]
1313
[![License MIT][license-badge]][license]
14-
[![TinyORM v0.29.3][version-tinyorm-badge]][docs]
15-
[![tom v0.5.3][version-tom-badge]][docs]
14+
[![TinyORM v0.30.0][version-tinyorm-badge]][docs]
15+
[![tom v0.5.4][version-tom-badge]][docs]
1616

1717
TinyORM is a modern ORM library that makes interacting with a database extremely simple.
1818

@@ -128,5 +128,5 @@ The following list fastly summarizes all the `TinyORM` features.
128128
[docs]: https://www.tinyorm.org
129129
[license-badge]: https://img.shields.io/github/license/silverqx/TinyORM
130130
[license]: https://github.com/silverqx/TinyORM/blob/main/LICENSE
131-
[version-tinyorm-badge]: https://img.shields.io/badge/TinyORM-v0.29.3-blue
132-
[version-tom-badge]: https://img.shields.io/badge/tom-v0.5.3-blue
131+
[version-tinyorm-badge]: https://img.shields.io/badge/TinyORM-v0.30.0-blue
132+
[version-tom-badge]: https://img.shields.io/badge/tom-v0.5.4-blue

cmake/vcpkg/ports/tinyorm-qt5/vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tinyorm-qt5",
3-
"version-semver": "0.29.3",
3+
"version-semver": "0.30.0",
44
"description": "Modern C++ ORM library for the Qt framework",
55
"homepage": "https://github.com/silverqx/TinyORM",
66
"documentation": "https://www.tinyorm.org",

cmake/vcpkg/ports/tinyorm/vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
33
"name": "tinyorm",
4-
"version-semver": "0.29.3",
4+
"version-semver": "0.30.0",
55
"description": "Modern C++ ORM library for the Qt framework",
66
"homepage": "https://github.com/silverqx/TinyORM",
77
"documentation": "https://www.tinyorm.org",

docs/README.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,5 @@ If you don't want to use full [`ORM`](tinyorm/getting-started.mdx), then you can
4242

4343
##### Current versions
4444

45-
- __TinyORM__ v0.29.3
46-
- __tom__ v0.5.3
45+
- __TinyORM__ v0.30.0
46+
- __tom__ v0.5.4

include/orm/version.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ TINY_SYSTEM_HEADER
1212
https://community.kde.org/Policies/Binary_Compatibility_Issues_With_C++
1313
https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html*/
1414
#define TINYORM_VERSION_MAJOR 0
15-
#define TINYORM_VERSION_MINOR 29
16-
#define TINYORM_VERSION_BUGFIX 3
15+
#define TINYORM_VERSION_MINOR 30
16+
#define TINYORM_VERSION_BUGFIX 0
1717
#define TINYORM_VERSION_BUILD 0
1818
// Should be empty for stable releases, and use hypen before for SemVer compatibility!
1919
#define TINYORM_VERSION_STATUS ""

tests/TinyUtils/src/version.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
#define TINYUTILS_VERSION_HPP
44

55
#define TINYUTILS_VERSION_MAJOR 0
6-
#define TINYUTILS_VERSION_MINOR 2
7-
#define TINYUTILS_VERSION_BUGFIX 1
6+
#define TINYUTILS_VERSION_MINOR 3
7+
#define TINYUTILS_VERSION_BUGFIX 0
88
#define TINYUTILS_VERSION_BUILD 0
99

1010
// NOLINTNEXTLINE(bugprone-reserved-identifier)

tom/include/tom/version.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ TINY_SYSTEM_HEADER
1010

1111
#define TINYTOM_VERSION_MAJOR 0
1212
#define TINYTOM_VERSION_MINOR 5
13-
#define TINYTOM_VERSION_BUGFIX 3
13+
#define TINYTOM_VERSION_BUGFIX 4
1414
#define TINYTOM_VERSION_BUILD 0
1515
// Should be empty for stable releases, and use hypen before for SemVer compatibility!
1616
#define TINYTOM_VERSION_STATUS ""

0 commit comments

Comments
 (0)