Skip to content

Commit 01c50a0

Browse files
committed
Prep for 1.2.0 release
1 parent a75a7c8 commit 01c50a0

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

CHANGELOG.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@
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+
Big thanks to [@lquidfire](https://github.com/lquidfire),
8+
[@futatuki](https://github.com/futatuki), and
9+
[@simotuki11](https://github.com/simotuki11) for reporting issues that
10+
needed to be addressed and/or providing fixes.
611

712
### Added
813
- libopenarc - `ARC_OPTS_SIGNATURE_TTL`
@@ -11,10 +16,9 @@ All notable changes to this project will be documented in this file.
1116
### Changed
1217
- libopenarc - Expired signatures cause chain validation to fail.
1318

14-
### Removed
15-
1619
### Fixed
1720
- Build issues on FreeBSD.
21+
- RPM spec typo that could result in installation failure.
1822
- libopenarc - `arc_free()` accepts NULL.
1923
- libopenarc - `c` is not a required tag in `ARC-Message-Signature`.
2024
- 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)