File tree 2 files changed +10
-8
lines changed
2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project will be documented in this file.
4
4
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.
6
9
7
10
### Added
8
11
- libopenarc - ` ARC_OPTS_SIGNATURE_TTL `
@@ -11,10 +14,9 @@ All notable changes to this project will be documented in this file.
11
14
### Changed
12
15
- libopenarc - Expired signatures cause chain validation to fail.
13
16
14
- ### Removed
15
-
16
17
### Fixed
17
18
- Build issues on FreeBSD.
19
+ - RPM spec typo that could result in installation failure.
18
20
- libopenarc - ` arc_free() ` accepts NULL.
19
21
- libopenarc - ` c ` is not a required tag in ` ARC-Message-Signature ` .
20
22
- libopenarc = ` ARC-Message-Signature ` headers covering a limited body length
Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ AC_PREREQ(2.61)
13
13
# Package version
14
14
#
15
15
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 )
18
18
# leave this empty for an actual release
19
- m4_define ( [ VERSION_PRE] , [ pre0 ] )
19
+ m4_define ( [ VERSION_PRE] , [ ] )
20
20
21
21
#
22
22
# Library version, only update at release time
@@ -25,9 +25,9 @@ m4_define([VERSION_PRE], [pre0])
25
25
# - bump age with backwards compatible API additions, reset age with
26
26
# removal or modification
27
27
#
28
- m4_define ( [ LIBVERSION_CURRENT] , 1 )
28
+ m4_define ( [ LIBVERSION_CURRENT] , 2 )
29
29
m4_define ( [ LIBVERSION_REVISION] , 0 )
30
- m4_define ( [ LIBVERSION_AGE] , 0 )
30
+ m4_define ( [ LIBVERSION_AGE] , 1 )
31
31
32
32
#
33
33
# Autotools setup
You can’t perform that action at this time.
0 commit comments