Skip to content

Commit

Permalink
switched version to 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sascha Kuehl committed Jul 13, 2019
1 parent 0707fc0 commit 801b475
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
STRING(TOUPPER ${PROJECT_NAME} PROJECT_NAME_UPPER)

SET(APP_MAJOR_VERSION 0)
SET(APP_MINOR_VERSION 5)
SET(APP_PATCH_LEVEL 1)
SET(APP_MINOR_VERSION 6)
SET(APP_PATCH_LEVEL 0)
SET(APP_VERSION "${APP_MAJOR_VERSION}.${APP_MINOR_VERSION}.${APP_PATCH_LEVEL}")

MESSAGE(STATUS "${PROJECT_NAME_UPPER} ${APP_VERSION}")
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ concrete object types.
Features:

* A unique fluent query interface
* Support for SQLite, MySQL and MS SQL Server
* Support for PostgreSQL, SQLite, MySQL and MS SQL Server
* One to one/many relations
* One storage container
* Filter with simple expressions
Expand Down
6 changes: 3 additions & 3 deletions test/object/ObjectStoreTestUnit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,13 +97,13 @@ struct item_counter : public std::unary_function<const object_ptr<ObjectItem<Ite

void ObjectStoreTestUnit::test_version()
{
std::string version("0.5.1");
std::string version("0.6.0");

UNIT_ASSERT_EQUAL(matador::version::str, version);

UNIT_ASSERT_EQUAL(matador::version::major, 0);
UNIT_ASSERT_EQUAL(matador::version::minor, 5);
UNIT_ASSERT_EQUAL(matador::version::patch_level, 1);
UNIT_ASSERT_EQUAL(matador::version::minor, 6);
UNIT_ASSERT_EQUAL(matador::version::patch_level, 0);
}


Expand Down

0 comments on commit 801b475

Please sign in to comment.