From b6737383d3dbaeb7617738859f099c3090c4c2e2 Mon Sep 17 00:00:00 2001 From: Paul Arthur Date: Fri, 22 Nov 2024 16:50:37 +0000 Subject: [PATCH] Prep for 1.2.0 release --- CHANGELOG.md | 10 +++++++--- configure.ac | 10 +++++----- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9adf23..90d1ffd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,12 @@ All notable changes to this project will be documented in this file. -## Unreleased +## [1.2.0](https://github.com/flowerysong/OpenARC/releases/tag/v1.2.0) - 2024-11-22 + +Big thanks to [@lquidfire](https://github.com/lquidfire), +[@futatuki](https://github.com/futatuki), and +[@simotuki11](https://github.com/simotuki11) for reporting the issues +addressed in this release and/or providing fixes. ### Added - libopenarc - `ARC_OPTS_SIGNATURE_TTL` @@ -11,10 +16,9 @@ All notable changes to this project will be documented in this file. ### Changed - libopenarc - Expired signatures cause chain validation to fail. -### Removed - ### Fixed - Build issues on FreeBSD. +- RPM spec typo that could result in installation failure. - libopenarc - `arc_free()` accepts NULL. - libopenarc - `c` is not a required tag in `ARC-Message-Signature`. - libopenarc = `ARC-Message-Signature` headers covering a limited body length diff --git a/configure.ac b/configure.ac index 7be871d..9b41ab5 100644 --- a/configure.ac +++ b/configure.ac @@ -13,10 +13,10 @@ AC_PREREQ(2.61) # Package version # m4_define([VERSION_RELEASE], 1) -m4_define([VERSION_MAJOR_REV], 1) -m4_define([VERSION_MINOR_REV], 1) +m4_define([VERSION_MAJOR_REV], 2) +m4_define([VERSION_MINOR_REV], 0) # leave this empty for an actual release -m4_define([VERSION_PRE], [pre0]) +m4_define([VERSION_PRE], []) # # Library version, only update at release time @@ -25,9 +25,9 @@ m4_define([VERSION_PRE], [pre0]) # - bump age with backwards compatible API additions, reset age with # removal or modification # -m4_define([LIBVERSION_CURRENT], 1) +m4_define([LIBVERSION_CURRENT], 2) m4_define([LIBVERSION_REVISION], 0) -m4_define([LIBVERSION_AGE], 0) +m4_define([LIBVERSION_AGE], 1) # # Autotools setup