From 25b538566d64dcf25037ff8f33d81aaa8c2211ba Mon Sep 17 00:00:00 2001 From: "Mateusz Kusiak (Timax)" Date: Wed, 16 Nov 2022 22:25:24 +0100 Subject: [PATCH] Prepare initial release, v1.0 This is it, the first release of Klik. This patch introduces klik versioning scheme: vX.Y X - New feature added. Y - Bug fixes. Add doc.html. This file redirects to website with documentation / guide. It will be attached to release. Change version in CmakeLists.txt Signed-off-by: Mateusz Kusiak (Timax) --- CMakeLists.txt | 4 ++-- docs.html | 16 ++++++++++++++++ 2 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 docs.html diff --git a/CMakeLists.txt b/CMakeLists.txt index b64661f..831ba95 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,7 +21,7 @@ aux_source_directory(. PROJECT_SOURCES) aux_source_directory(./libs/picow_tls_client PICO_TLS_CLIENT) -# Add executable. Default name is the project name, version 0.1 +# Add executable. Default name is the project name add_executable(klik klik.c ${PROJECT_SOURCES} ${PICO_TLS_CLIENT}) target_include_directories(klik PRIVATE @@ -29,7 +29,7 @@ target_include_directories(klik PRIVATE ) pico_set_program_name(klik "klik") -pico_set_program_version(klik "0.1") +pico_set_program_version(klik "1.0") pico_enable_stdio_uart(klik 1) pico_enable_stdio_usb(klik 1) diff --git a/docs.html b/docs.html new file mode 100644 index 0000000..5d6a732 --- /dev/null +++ b/docs.html @@ -0,0 +1,16 @@ + + + + + + + + Klik + + + + + ¯\_(ツ)_/¯ Redirecting, lol. + + + \ No newline at end of file