Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
klausweinbauer committed Mar 22, 2023
1 parent 454c4d6 commit 91434a9
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
16 changes: 10 additions & 6 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,14 @@
// Uncomment to connect as a non-root user if you've added one. See https://aka.ms/vscode-remote/containers/non-root.
// "remoteUser": "vscode"
"postCreateCommand": "git config --global --add safe.directory /workspaces/LEVEL && git config --global user.name 'Klaus Weinbauer' && git config --global user.email 'klaus.weinbauer@student.tugraz.at'",
"extensions": [
"matepek.vscode-catch2-test-adapter",
"mhutchie.git-graph",
"ms-vscode.cpptools-extension-pack",
"xaver.clang-format"
]
"customizations": {
"vscode": {
"extensions": [
"matepek.vscode-catch2-test-adapter",
"mhutchie.git-graph",
"ms-vscode.cpptools-extension-pack",
"xaver.clang-format"
]
}
}
}
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.16.3)

set(LEVEL_VERSION_MAJOR 0)
set(LEVEL_VERSION_MINOR 1)
set(LEVEL_VERSION_MAJOR 1)
set(LEVEL_VERSION_MINOR 0)
set(LEVEL_VERSION_PATCH 0)

set(LEVEL_VERSION "${LEVEL_VERSION_MAJOR}.${LEVEL_VERSION_MINOR}.${LEVEL_VERSION_PATCH}")
Expand Down
2 changes: 1 addition & 1 deletion test/unit/level_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ int main(int argc, char **argv) {

TEST(API, TestGetVersion) {
auto version = getVersion();
ASSERT_TRUE(0 == strcmp("0.1.0", version));
ASSERT_TRUE(0 == strcmp("1.0.0", version));
}

TEST(API, TestGetErrorMessage) {
Expand Down

0 comments on commit 91434a9

Please sign in to comment.