File tree 2 files changed +12
-8
lines changed
2 files changed +12
-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
+ 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.
6
11
7
12
### Added
8
13
- libopenarc - ` ARC_OPTS_SIGNATURE_TTL `
@@ -11,10 +16,9 @@ All notable changes to this project will be documented in this file.
11
16
### Changed
12
17
- libopenarc - Expired signatures cause chain validation to fail.
13
18
14
- ### Removed
15
-
16
19
### Fixed
17
20
- Build issues on FreeBSD.
21
+ - RPM spec typo that could result in installation failure.
18
22
- libopenarc - ` arc_free() ` accepts NULL.
19
23
- libopenarc - ` c ` is not a required tag in ` ARC-Message-Signature ` .
20
24
- 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