diff --git a/NEWS b/NEWS index d30f8470..0a6a231d 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,10 @@ +0.36.8: + * Switch from gpg to gpg2 for checking and making signatures + * cmake: Add src_test definition + * Define _FORTIFY_SOURCE as 3 + * git: Retry clone without '--depth' if it fails due to dumb transport + * Add initial support for SOURCE_DATE_EPOCH + 0.36.7: * Fix incorrect options passed to unzstd in unpack() * Warn that DEPEND is deprecated diff --git a/cygport.spec b/cygport.spec index 8d5aa090..0a242241 100644 --- a/cygport.spec +++ b/cygport.spec @@ -1,7 +1,7 @@ %define debug_package %{nil} Name: cygport -Version: 0.36.7 +Version: 0.36.8 Release: 1%{?dist} Summary: Cygwin package building tool diff --git a/data/sample.cygport b/data/sample.cygport index 3406eeb1..8d57ecf0 100644 --- a/data/sample.cygport +++ b/data/sample.cygport @@ -1,7 +1,7 @@ inherit meson NAME="cygport" -VERSION=0.36.7 +VERSION=0.36.8 RELEASE=1 CATEGORY="Devel" SUMMARY="Cygwin source packaging tool" diff --git a/meson.build b/meson.build index b648c3be..70e2f35b 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('cygport', - version: '0.36.7') + version: '0.36.8') bindir = join_paths(get_option('prefix'), get_option('bindir')) datadir = join_paths(get_option('prefix'), get_option('datadir'))