Initial 2.8-dev commit

This commit is contained in:
Michał Trojnara 2023-09-19 22:03:02 +02:00
parent 9ebd79ad18
commit ecb17709fc
3 changed files with 5 additions and 3 deletions

View File

@ -7,7 +7,7 @@ on:
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
version: osslsigncode-2.7
version: osslsigncode-2.8-dev
jobs:
build:

View File

@ -10,13 +10,13 @@ set(BUILTIN_SOCKET ON CACHE BOOL "") # for static Python
# configure basic project information
project(osslsigncode
VERSION 2.7
VERSION 2.8
DESCRIPTION "OpenSSL based Authenticode signing for PE, CAB, CAT and MSI files"
HOMEPAGE_URL "https://github.com/mtrojnar/osslsigncode"
LANGUAGES C)
# force nonstandard version format for development packages
set(DEV "")
set(DEV "-dev")
set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}${DEV}")
# version and contact information

View File

@ -1,5 +1,7 @@
# osslsigncode change log
### 2.8 (unreleased)
### 2.7 (2023.09.19)
- fixed signing CAB files (by Michael Brown)