Skip to content

Commit 89e49e0

Browse files
committed
Prep for 1.2.0 release
1 parent a75a7c8 commit 89e49e0

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

CHANGELOG.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
## Unreleased
5+
## [1.2.0](https://github.com/flowerysong/OpenARC/releases/tag/v1.2.0) - 2024-11-22
6+
7+
Thanks to @lquidfire, @futatuki, and @simotuki11 for finding issues that
8+
needed to be addressed.
69

710
### Added
811
- libopenarc - `ARC_OPTS_SIGNATURE_TTL`
@@ -11,10 +14,9 @@ All notable changes to this project will be documented in this file.
1114
### Changed
1215
- libopenarc - Expired signatures cause chain validation to fail.
1316

14-
### Removed
15-
1617
### Fixed
1718
- Build issues on FreeBSD.
19+
- RPM spec typo that could result in installation failure.
1820
- libopenarc - `arc_free()` accepts NULL.
1921
- libopenarc - `c` is not a required tag in `ARC-Message-Signature`.
2022
- libopenarc = `ARC-Message-Signature` headers covering a limited body length

configure.ac

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ AC_PREREQ(2.61)
1313
# Package version
1414
#
1515
m4_define([VERSION_RELEASE], 1)
16-
m4_define([VERSION_MAJOR_REV], 1)
17-
m4_define([VERSION_MINOR_REV], 1)
16+
m4_define([VERSION_MAJOR_REV], 2)
17+
m4_define([VERSION_MINOR_REV], 0)
1818
# leave this empty for an actual release
19-
m4_define([VERSION_PRE], [pre0])
19+
m4_define([VERSION_PRE], [])
2020

2121
#
2222
# Library version, only update at release time
@@ -25,9 +25,9 @@ m4_define([VERSION_PRE], [pre0])
2525
# - bump age with backwards compatible API additions, reset age with
2626
# removal or modification
2727
#
28-
m4_define([LIBVERSION_CURRENT], 1)
28+
m4_define([LIBVERSION_CURRENT], 2)
2929
m4_define([LIBVERSION_REVISION], 0)
30-
m4_define([LIBVERSION_AGE], 0)
30+
m4_define([LIBVERSION_AGE], 1)
3131

3232
#
3333
# Autotools setup

0 commit comments

Comments
 (0)