Skip to content

Commit 881ab16

Browse files
committed
bump version to TinyORM v0.34.1
1 parent f3cc545 commit 881ab16

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

NOTES.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ Increase/bump the release version:
33

44
- bump message format:
55

6-
bump version to TinyORM v0.34.0 and tom v0.6.0
6+
bump version to TinyORM v0.34.1 and tom v0.6.0
77

8-
- just simply search the current version number in all files eg. 0.34.0
8+
- just simply search the current version number in all files eg. 0.34.1
99
- 6 files must be modified, README.md, docs/README.mdx, two vcpkg.json files, NOTES.txt,
1010
plus bumped version.hpp files
1111

README.md

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

1212
[![TinyORM - www.tinyorm.org][docs-badge]][docs]
1313
[![License MIT][license-badge]][license]
14-
[![TinyORM v0.34.0][version-tinyorm-badge]][docs]
14+
[![TinyORM v0.34.1][version-tinyorm-badge]][docs]
1515
[![tom v0.6.0][version-tom-badge]][docs]
1616

1717
TinyORM is a modern ORM library that makes interacting with a database extremely simple.
@@ -135,5 +135,5 @@ The following list fastly summarizes all the `TinyORM` features.
135135
[docs]: https://www.tinyorm.org
136136
[license-badge]: https://img.shields.io/github/license/silverqx/TinyORM
137137
[license]: https://github.com/silverqx/TinyORM/blob/main/LICENSE
138-
[version-tinyorm-badge]: https://img.shields.io/badge/TinyORM-v0.34.0-blue
138+
[version-tinyorm-badge]: https://img.shields.io/badge/TinyORM-v0.34.1-blue
139139
[version-tom-badge]: https://img.shields.io/badge/tom-v0.6.0-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.34.0",
3+
"version-semver": "0.34.1",
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.34.0",
4+
"version-semver": "0.34.1",
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@ If you don't want to use full [`ORM`](tinyorm/getting-started.mdx), then you can
4545

4646
##### Current versions
4747

48-
- __TinyORM__ v0.34.0
48+
- __TinyORM__ v0.34.1
4949
- __tom__ v0.6.0

docs/building/hello-world.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ add_executable(HelloWorld
306306
)\n
307307
find_package(QT NAMES Qt6 Qt5 COMPONENTS Core REQUIRED)
308308
find_package(Qt\${QT_VERSION_MAJOR} COMPONENTS Core REQUIRED)
309-
find_package(TinyOrm 0.34.0 CONFIG REQUIRED)\n
309+
find_package(TinyOrm 0.34.1 CONFIG REQUIRED)\n
310310
target_link_libraries(HelloWorld
311311
PRIVATE
312312
Qt\${QT_VERSION_MAJOR}::Core
@@ -337,7 +337,7 @@ add_executable(HelloWorld
337337
)\n
338338
find_package(QT NAMES Qt6 Qt5 COMPONENTS Core REQUIRED)
339339
find_package(Qt\${QT_VERSION_MAJOR} COMPONENTS Core REQUIRED)
340-
find_package(TinyOrm 0.16.0 CONFIG REQUIRED)\n
340+
find_package(TinyOrm 0.34.1 CONFIG REQUIRED)\n
341341
target_link_libraries(HelloWorld
342342
PRIVATE
343343
Qt\${QT_VERSION_MAJOR}::Core

include/orm/version.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ TINY_SYSTEM_HEADER
1313
https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html*/
1414
#define TINYORM_VERSION_MAJOR 0
1515
#define TINYORM_VERSION_MINOR 34
16-
#define TINYORM_VERSION_BUGFIX 0
16+
#define TINYORM_VERSION_BUGFIX 1
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 ""

0 commit comments

Comments
 (0)