From c43b8bbf84f2b39d647b6190e9b81ae5eaf09029 Mon Sep 17 00:00:00 2001 From: hanez Date: Sat, 27 Sep 2025 22:37:16 +0200 Subject: [PATCH] .gitignore update to exclude windows build dirs. --- .gitignore | 3 ++- CMakeLists.txt | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 8d6671f..79dcd12 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ .idea/ -build/ +build* +cmake* dist/ lib/*.so out/ diff --git a/CMakeLists.txt b/CMakeLists.txt index d7b0193..6499d86 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.16) -project(fun VERSION 0.6.1 LANGUAGES C) +project(fun VERSION 0.6.2 LANGUAGES C) set(CMAKE_C_STANDARD 11) set(CMAKE_C_STANDARD_REQUIRED ON)