From d6baae68c3e009ec2be7b19a53986c75de474131 Mon Sep 17 00:00:00 2001 From: kimci86 Date: Sat, 21 Dec 2024 18:02:11 +0100 Subject: [PATCH] Release v1.7.1 - Fix typos in readme and resources md files by @jimdiroffii (#123) - Minor bugfixes and optimizations related to password recovery --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0b85d60..435e2d3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,11 +2,11 @@ cmake_minimum_required(VERSION 3.19) # project definition project(bkcrack - VERSION 1.7.0 # remember to update bkcrack_VERSION_DATE below when releasing a new version + VERSION 1.7.1 # remember to update bkcrack_VERSION_DATE below when releasing a new version DESCRIPTION "Crack legacy zip encryption with Biham and Kocher's known plaintext attack." HOMEPAGE_URL "https://github.com/kimci86/bkcrack" LANGUAGES CXX) -set(bkcrack_VERSION_DATE "2024-05-26") +set(bkcrack_VERSION_DATE "2024-12-21") # default build type set(default_build_type "Release")