Skip to content

Commit

Permalink
Prep for 1.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
flowerysong committed Nov 5, 2024
1 parent 38e8530 commit fe964f8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 6 deletions.
17 changes: 14 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,18 @@

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

## Unreleased
## [1.1.0](https://github.com/flowerysong/OpenARC/releases/tag/v1.1.0) - 2024-11-05

In this development cycle all open issues and PRs in
https://github.com/trusteddomainproject/OpenARC were reviewed and
either addressed or rejected, changes in the ARC spec between the
drafts OpenARC initially implemented and the final version of RFC 8617
were reviewed and addressed, and all embedded comments indicating a
known issue with the code were addressed.

Other efforts focused on housekeeping tasks such as cleaning up unused
and broken parts of the build system, reducing code duplication, and
increasing test coverage.

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

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

No notable changes.

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

Changes since the last Trusted Domain Project release.

Expand Down
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ m4_define([VERSION_RELEASE], 1)
m4_define([VERSION_MAJOR_REV], 1)
m4_define([VERSION_MINOR_REV], 0)
# leave this empty for an actual release
m4_define([VERSION_PRE], [pre0])
m4_define([VERSION_PRE], [])

#
# Library version, only update at release time
Expand All @@ -25,8 +25,8 @@ m4_define([VERSION_PRE], [pre0])
# - bump age with backwards compatible API additions, reset age with
# removal or modification
#
m4_define([LIBVERSION_CURRENT], 0)
m4_define([LIBVERSION_REVISION], 1)
m4_define([LIBVERSION_CURRENT], 1)
m4_define([LIBVERSION_REVISION], 0)
m4_define([LIBVERSION_AGE], 0)

#
Expand Down

0 comments on commit fe964f8

Please sign in to comment.