From dddc80c8712fd4eca892120d7d787ab067300643 Mon Sep 17 00:00:00 2001 From: silverqx Date: Sun, 20 Aug 2023 15:48:24 +0200 Subject: [PATCH] bump version to TinyORM v0.34.0 - qmake added tiny_autoconf feature - qmake added tiny_dotenv feature - completely revisited qmake build system - updated docs --- NOTES.txt | 4 ++-- README.md | 4 ++-- cmake/vcpkg/ports/tinyorm-qt5/vcpkg.json | 2 +- cmake/vcpkg/ports/tinyorm/vcpkg.json | 2 +- docs/README.mdx | 2 +- docs/building/hello-world.mdx | 2 +- include/orm/version.hpp | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/NOTES.txt b/NOTES.txt index 07ea170f9..9b9457ffa 100644 --- a/NOTES.txt +++ b/NOTES.txt @@ -3,9 +3,9 @@ Increase/bump the release version: - bump message format: -bump version to TinyORM v0.33.0 and tom v0.6.0 +bump version to TinyORM v0.34.0 and tom v0.6.0 -- just simply search the current version number in all files eg. 0.33.0 +- just simply search the current version number in all files eg. 0.34.0 - 6 files must be modified, README.md, docs/README.mdx, two vcpkg.json files, NOTES.txt, plus bumped version.hpp files diff --git a/README.md b/README.md index 57f208da9..66aee23de 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ [![TinyORM - www.tinyorm.org][docs-badge]][docs] [![License MIT][license-badge]][license] -[![TinyORM v0.33.0][version-tinyorm-badge]][docs] +[![TinyORM v0.34.0][version-tinyorm-badge]][docs] [![tom v0.6.0][version-tom-badge]][docs] 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. [docs]: https://www.tinyorm.org [license-badge]: https://img.shields.io/github/license/silverqx/TinyORM [license]: https://github.com/silverqx/TinyORM/blob/main/LICENSE -[version-tinyorm-badge]: https://img.shields.io/badge/TinyORM-v0.33.0-blue +[version-tinyorm-badge]: https://img.shields.io/badge/TinyORM-v0.34.0-blue [version-tom-badge]: https://img.shields.io/badge/tom-v0.6.0-blue diff --git a/cmake/vcpkg/ports/tinyorm-qt5/vcpkg.json b/cmake/vcpkg/ports/tinyorm-qt5/vcpkg.json index 19032adfc..3db6eb116 100644 --- a/cmake/vcpkg/ports/tinyorm-qt5/vcpkg.json +++ b/cmake/vcpkg/ports/tinyorm-qt5/vcpkg.json @@ -1,6 +1,6 @@ { "name": "tinyorm-qt5", - "version-semver": "0.33.0", + "version-semver": "0.34.0", "description": "Modern C++ ORM library for the Qt framework", "homepage": "https://github.com/silverqx/TinyORM", "documentation": "https://www.tinyorm.org", diff --git a/cmake/vcpkg/ports/tinyorm/vcpkg.json b/cmake/vcpkg/ports/tinyorm/vcpkg.json index 3482f2fc6..7d758a86a 100644 --- a/cmake/vcpkg/ports/tinyorm/vcpkg.json +++ b/cmake/vcpkg/ports/tinyorm/vcpkg.json @@ -1,7 +1,7 @@ { "$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json", "name": "tinyorm", - "version-semver": "0.33.0", + "version-semver": "0.34.0", "description": "Modern C++ ORM library for the Qt framework", "homepage": "https://github.com/silverqx/TinyORM", "documentation": "https://www.tinyorm.org", diff --git a/docs/README.mdx b/docs/README.mdx index dad873870..8bacbfd57 100644 --- a/docs/README.mdx +++ b/docs/README.mdx @@ -45,5 +45,5 @@ If you don't want to use full [`ORM`](tinyorm/getting-started.mdx), then you can ##### Current versions -- __TinyORM__ v0.33.0 +- __TinyORM__ v0.34.0 - __tom__ v0.6.0 diff --git a/docs/building/hello-world.mdx b/docs/building/hello-world.mdx index d2d7b31cb..3704d430e 100644 --- a/docs/building/hello-world.mdx +++ b/docs/building/hello-world.mdx @@ -306,7 +306,7 @@ add_executable(HelloWorld )\n find_package(QT NAMES Qt6 Qt5 COMPONENTS Core REQUIRED) find_package(Qt\${QT_VERSION_MAJOR} COMPONENTS Core REQUIRED) -find_package(TinyOrm 0.33.0 CONFIG REQUIRED)\n +find_package(TinyOrm 0.34.0 CONFIG REQUIRED)\n target_link_libraries(HelloWorld PRIVATE Qt\${QT_VERSION_MAJOR}::Core diff --git a/include/orm/version.hpp b/include/orm/version.hpp index 43b870630..0564b57a1 100644 --- a/include/orm/version.hpp +++ b/include/orm/version.hpp @@ -12,7 +12,7 @@ TINY_SYSTEM_HEADER https://community.kde.org/Policies/Binary_Compatibility_Issues_With_C++ https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html*/ #define TINYORM_VERSION_MAJOR 0 -#define TINYORM_VERSION_MINOR 33 +#define TINYORM_VERSION_MINOR 34 #define TINYORM_VERSION_BUGFIX 0 #define TINYORM_VERSION_BUILD 0 // Should be empty for stable releases, and use hypen before for SemVer compatibility!