Skip to content

Commit

Permalink
Update build to 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Frostshake committed Oct 12, 2024
1 parent 8375482 commit 7bb830c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.14)

project(WDBx VERSION 0.1 LANGUAGES CXX)
project(WDBx VERSION 0.2 LANGUAGES CXX)

set(CMAKE_INCLUDE_CURRENT_DIR ON)

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@ FieldName == "value"
FieldArray[0] != 123.45
FieldName IN {1,2,3}
(FieldA >= FieldB OR FieldC < FieldD)
((a == b OR c == d) AND (e == f))
```
8 changes: 4 additions & 4 deletions src/WDBx.rc
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ IDI_ICON1 ICON DISCARDABLE "WDBx.ico"
#include <windows.h>

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,1,0,0
PRODUCTVERSION 0,1,0,0
FILEVERSION 0,2,0,0
PRODUCTVERSION 0,2,0,0
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "FileVersion", "0.1.0"
VALUE "FileVersion", "0.2.0"
VALUE "ProductName", "WDBx"
VALUE "ProductVersion", "0.1.0"
VALUE "ProductVersion", "0.2.0"
END
END
END

0 comments on commit 7bb830c

Please sign in to comment.