Skip to content

Commit d47a3a5

Browse files
committed
Prep for 1.1.0 release
1 parent 38e8530 commit d47a3a5

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

CHANGELOG.md

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

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

5-
## Unreleased
5+
## [1.1.0](https://github.com/flowerysong/OpenARC/releases/tag/v1.1.0) - 2024-11-05
6+
7+
In this development cycle all open issues and PRs in
8+
https://github.com/trusteddomainproject/OpenARC were reviewed and
9+
either addressed or rejected, changes in the ARC spec between the
10+
drafts OpenARC initially implemented and the final version of RFC 8617
11+
were reviewed and addressed, and all embedded comments indicating a
12+
known issue with the code were addressed.
613

714
### Added
815
- `oldest-pass` processing per [RFC 8617 section 5.2](https://datatracker.ietf.org/doc/html/rfc8617#section-5.2).
@@ -66,11 +73,11 @@ All notable changes to this project will be documented in this file.
6673
- milter - Small memory leak during config loading.
6774
- milter - The `Authentication-Results` authserv-id can contain UTF-8.
6875

69-
## 1.0.0 - 2024-10-18
76+
## [1.0.0](https://github.com/flowerysong/OpenARC/releases/tag/v1.0.0) - 2024-10-18
7077

7178
No notable changes.
7279

73-
## 1.0.0rc0 - 2024-10-15
80+
## [1.0.0rc0](https://github.com/flowerysong/OpenARC/releases/tag/v1.0.0rc0) - 2024-10-15
7481

7582
Changes since the last Trusted Domain Project release.
7683

configure.ac

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ m4_define([VERSION_RELEASE], 1)
1616
m4_define([VERSION_MAJOR_REV], 1)
1717
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,8 +25,8 @@ 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], 0)
29-
m4_define([LIBVERSION_REVISION], 1)
28+
m4_define([LIBVERSION_CURRENT], 1)
29+
m4_define([LIBVERSION_REVISION], 0)
3030
m4_define([LIBVERSION_AGE], 0)
3131

3232
#

0 commit comments

Comments
 (0)