Skip to content

Commit 12816dc

Browse files
committed
Updated version to v0.1.1
1 parent e49ff07 commit 12816dc

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

src.wsjcpp/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Automaticly generated by wsjcpp@v0.0.1
1+
# Automaticly generated by wsjcpp@v0.1.6
22
cmake_minimum_required(VERSION 3.0)
33

4-
add_definitions(-DWSJCPP_VERSION="v0.0.1")
5-
add_definitions(-DWSJCPP_NAME="wsjcpp-hashes")
4+
add_definitions(-DWSJCPP_APP_VERSION="v0.1.1")
5+
add_definitions(-DWSJCPP_APP_NAME="wsjcpp-hashes")
66

77
if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
88
set(MACOSX TRUE)

src/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
int main(int argc, char* argv[]) {
77
std::string TAG = "MAIN";
8-
std::string appName = std::string(WSJCPP_NAME);
9-
std::string appVersion = std::string(WSJCPP_VERSION);
8+
std::string appName = std::string(WSJCPP_APP_NAME);
9+
std::string appVersion = std::string(WSJCPP_APP_VERSION);
1010

1111
std::string sSource = "some123";
1212
std::string sSha1 = WsjcppHashes::sha1_calc_hex(sSource);

unit-tests.wsjcpp/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# Automaticly generated by wsjcpp@v0.0.1
1+
# Automaticly generated by wsjcpp@v0.1.6
22
cmake_minimum_required(VERSION 3.0)
33

44
project(unit-tests C CXX)
5-
add_definitions(-DWSJCPP_VERSION="ut-v0.0.1")
6-
add_definitions(-DWSJCPP_NAME="unit-tests-wsjcpp-hashes")
5+
add_definitions(-DWSJCPP_APP_VERSION="ut-v0.1.1")
6+
add_definitions(-DWSJCPP_APP_NAME="unit-tests-wsjcpp-hashes")
77

88
if (${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
99
set(MACOSX TRUE)
@@ -27,7 +27,7 @@ list (APPEND WSJCPP_SOURCES "../src.wsjcpp/wsjcpp_core/wsjcpp_unit_tests.cpp")
2727
list (APPEND WSJCPP_SOURCES "../src.wsjcpp/wsjcpp_core/wsjcpp_unit_tests.h")
2828
list (APPEND WSJCPP_SOURCES "../src.wsjcpp/wsjcpp_core/wsjcpp_unit_tests_main.cpp")
2929

30-
# wsjcpp-hashes:v0.0.1
30+
# wsjcpp-hashes:v0.1.1
3131
list (APPEND WSJCPP_INCLUDE_DIRS "../src")
3232
list (APPEND WSJCPP_SOURCES "../src/md5.cpp")
3333
list (APPEND WSJCPP_SOURCES "../src/md5.h")

wsjcpp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cmake_cxx_standard: 11
33
cmake_minimum_required: 3.0
44

55
name: wsjcpp-hashes
6-
version: v0.1.0
6+
version: v0.1.1
77
description: Small Collection of hashes
88
issues: https://github.com/wsjcpp/wsjcpp-hashes/issues
99

0 commit comments

Comments
 (0)