Skip to content

Commit 291778c

Browse files
committed
bump version to TinyORM v0.36.1
- vcpkg enabled tom example on Linux - workflows bugfix-es
1 parent 8859a4d commit 291778c

File tree

9 files changed

+18
-18
lines changed

9 files changed

+18
-18
lines changed

NOTES.txt

Lines changed: 5 additions & 5 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.36.0 and tom v0.7.0
6+
bump version to TinyORM v0.36.1 and tom v0.7.0
77

8-
- just simply search the current version number in all files eg. 0.36.0
8+
- just simply search the current version number in all files eg. 0.36.1
99
- don't forget to update a version number in the silverqx/TinyORM-HelloWorld find_package() call
1010

1111
- TinyORM:
@@ -66,7 +66,7 @@ Prefer tags in the REF but can also be a commit ID.
6666

6767
The SHA512 is a hash of the source code tinyorm.tar.gz archive, the tools/Get-VcpkgHash.ps1
6868
script can be used to obtain this hash. The URL to download this archive is:
69-
https://github.com/silverqx/TinyORM/archive/v0.36.0.tar.gz
69+
https://github.com/silverqx/TinyORM/archive/v0.36.1.tar.gz
7070
https://github.com/silverqx/TinyORM/archive/ca8909896247b21bf08d62a5109b23e9f65c89e1.tar.gz
7171

7272
If only the vcpkg is updated but the TinyORM version number is not bumped then
@@ -1102,10 +1102,10 @@ How the Package Config file works:
11021102
- I have invested a lot of effort to these info messages
11031103
- whether linking against the single, multi, vcpkg builds
11041104
- against which TinyORM package is linking eg.:
1105-
Found package TinyOrm 0.36.0.0 Debug (requested 0.36.0) at O:/Code/c/qMedia/TinyORM/TinyORM-builds-cmake/build-TinyORM-Desktop_Qt_6_5_3_MSVC2022_64bit-Debug/TinyOrmConfig.cmake
1105+
Found package TinyOrm 0.36.1.0 Debug (requested 0.36.1) at O:/Code/c/qMedia/TinyORM/TinyORM-builds-cmake/build-TinyORM-Desktop_Qt_6_5_3_MSVC2022_64bit-Debug/TinyOrmConfig.cmake
11061106

11071107
- whether Matching build type for Build tree was enabled/disabled eg.:
1108-
Matching build type for the TinyOrm 0.36.0.0 package build tree was enabled
1108+
Matching build type for the TinyOrm 0.36.1.0 package build tree was enabled
11091109
- Matching build type is controlled by the MATCH_EQUAL_EXPORTED_BUILDTREE CMake config. option
11101110
during the TinyORM library configure
11111111

README.md

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

1313
[![TinyORM - www.tinyorm.org][docs-badge]][docs]
1414
[![License MIT][license-badge]][license]
15-
[![TinyORM v0.36.0][version-tinyorm-badge]][docs]
15+
[![TinyORM v0.36.1][version-tinyorm-badge]][docs]
1616
[![tom v0.7.0][version-tom-badge]][docs]
1717

1818
TinyORM is a modern ORM library that makes interacting with a database extremely simple.
@@ -138,5 +138,5 @@ The following list fastly summarizes all the `TinyORM` features.
138138
[docs]: https://www.tinyorm.org
139139
[license-badge]: https://img.shields.io/github/license/silverqx/TinyORM
140140
[license]: https://github.com/silverqx/TinyORM/blob/main/LICENSE
141-
[version-tinyorm-badge]: https://img.shields.io/badge/TinyORM-v0.36.0-blue
141+
[version-tinyorm-badge]: https://img.shields.io/badge/TinyORM-v0.36.1-blue
142142
[version-tom-badge]: https://img.shields.io/badge/tom-v0.7.0-blue

cmake/vcpkg/ports/tinyorm-qt5/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-qt5",
4-
"version-semver": "0.36.0",
4+
"version-semver": "0.36.1",
55
"maintainers": "Silver Zachara <silver.zachara@gmail.com>",
66
"description": "Modern C++ ORM library for Qt framework",
77
"homepage": "https://github.com/silverqx/TinyORM",

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.36.0",
4+
"version-semver": "0.36.1",
55
"maintainers": "Silver Zachara <silver.zachara@gmail.com>",
66
"description": "Modern C++ ORM library for Qt framework",
77
"homepage": "https://github.com/silverqx/TinyORM",

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.36.0
48+
- __TinyORM__ v0.36.1
4949
- __tom__ v0.7.0

docs/building/hello-world.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ add_executable(HelloWorld
239239
)\n
240240
find_package(QT NAMES Qt6 Qt5 COMPONENTS Core REQUIRED)
241241
find_package(Qt\${QT_VERSION_MAJOR} COMPONENTS Core REQUIRED)
242-
find_package(TinyOrm 0.36.0 CONFIG REQUIRED)\n
242+
find_package(TinyOrm 0.36.1 CONFIG REQUIRED)\n
243243
target_link_libraries(HelloWorld
244244
PRIVATE
245245
Qt\${QT_VERSION_MAJOR}::Core
@@ -261,7 +261,7 @@ add_executable(HelloWorld
261261
)\n
262262
find_package(QT NAMES Qt6 Qt5 COMPONENTS Core REQUIRED)
263263
find_package(Qt\${QT_VERSION_MAJOR} COMPONENTS Core REQUIRED)
264-
find_package(TinyOrm 0.36.0 CONFIG REQUIRED)\n
264+
find_package(TinyOrm 0.36.1 CONFIG REQUIRED)\n
265265
target_link_libraries(HelloWorld
266266
PRIVATE
267267
Qt\${QT_VERSION_MAJOR}::Core
@@ -317,7 +317,7 @@ add_executable(HelloWorld
317317
)\n
318318
find_package(QT NAMES Qt6 Qt5 COMPONENTS Core REQUIRED)
319319
find_package(Qt\${QT_VERSION_MAJOR} COMPONENTS Core REQUIRED)
320-
find_package(TinyOrm 0.36.0 CONFIG REQUIRED)\n
320+
find_package(TinyOrm 0.36.1 CONFIG REQUIRED)\n
321321
target_link_libraries(HelloWorld
322322
PRIVATE
323323
Qt\${QT_VERSION_MAJOR}::Core
@@ -348,7 +348,7 @@ add_executable(HelloWorld
348348
)\n
349349
find_package(QT NAMES Qt6 Qt5 COMPONENTS Core REQUIRED)
350350
find_package(Qt\${QT_VERSION_MAJOR} COMPONENTS Core REQUIRED)
351-
find_package(TinyOrm 0.36.0 CONFIG REQUIRED)\n
351+
find_package(TinyOrm 0.36.1 CONFIG REQUIRED)\n
352352
target_link_libraries(HelloWorld
353353
PRIVATE
354354
Qt\${QT_VERSION_MAJOR}::Core

docs/building/migrations.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ tiny_resource_and_manifest(${Tom_target}
497497
498498
find_package(QT NAMES Qt6 Qt5 COMPONENTS Core REQUIRED)
499499
find_package(Qt${QT_VERSION_MAJOR} COMPONENTS Core REQUIRED)
500-
find_package(TinyOrm 0.36.0 CONFIG REQUIRED)
500+
find_package(TinyOrm 0.36.1 CONFIG REQUIRED)
501501
502502
# Unconditional dependencies
503503
target_link_libraries(${Tom_target}

docs/building/tinyorm.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ cd TinyORM-builds-cmake/build-debug
446446

447447
##### CMake `STRICT_MODE` option
448448

449-
The `STRICT_MODE` `CMake` configuration option was added in `TinyORM` `v0.36.0`. This option was added to avoid the propagation of aggressive strict warning compiler/linker options and Qt definitions from the `TinyORM` library to user code through the [`TinyOrm::CommonConfig`](https://github.com/silverqx/TinyORM/blob/main/cmake/CommonModules/TinyCommon.cmake) interface library.
449+
The `STRICT_MODE` `CMake` configuration option was added in `TinyORM` `v0.36.1`. This option was added to avoid the propagation of aggressive strict warning compiler/linker options and Qt definitions from the `TinyORM` library to user code through the [`TinyOrm::CommonConfig`](https://github.com/silverqx/TinyORM/blob/main/cmake/CommonModules/TinyCommon.cmake) interface library.
450450

451451
`TinyORM` uses the strictest warning level options, virtually anything that can be enabled is enabled to produce a better code. I highly recommend enabling this option to produce better code and to follow good practices. It also helps to follow the `ISOCPP` [C++ Core Guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) standards.
452452

@@ -539,7 +539,7 @@ Important `CMake` options.
539539
In your application or library `CMakeLists.txt` file add following `find_package()` call.
540540

541541
```cmake title='CMakeLists.txt'
542-
find_package(TinyOrm 0.36.0 CONFIG REQUIRED)
542+
find_package(TinyOrm 0.36.1 CONFIG REQUIRED)
543543
```
544544

545545
If the `TinyORM` build tree is not exported to the CMake's [`User Package Registry`](https://cmake.org/cmake/help/latest/manual/cmake-packages.7.html#user-package-registry) then also add the `TinyORM` build tree or `CMAKE_INSTALL_PREFIX` folder to the `CMAKE_PREFIX_PATH`, so CMake can find TinyORM's package configuration file during `find_package(TinyOrm)` call.

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 36
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 the hyphen before to be compatible with SemVer!
1919
#define TINYORM_VERSION_STATUS ""

0 commit comments

Comments
 (0)