Skip to content

Commit

Permalink
Prep for 1.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
flowerysong committed Nov 22, 2024
1 parent a75a7c8 commit 89e49e0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

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

## Unreleased
## [1.2.0](https://github.com/flowerysong/OpenARC/releases/tag/v1.2.0) - 2024-11-22

Thanks to @lquidfire, @futatuki, and @simotuki11 for finding issues that
needed to be addressed.

### Added
- libopenarc - `ARC_OPTS_SIGNATURE_TTL`
Expand All @@ -11,10 +14,9 @@ All notable changes to this project will be documented in this file.
### Changed
- libopenarc - Expired signatures cause chain validation to fail.

### Removed

### Fixed
- Build issues on FreeBSD.
- RPM spec typo that could result in installation failure.
- libopenarc - `arc_free()` accepts NULL.
- libopenarc - `c` is not a required tag in `ARC-Message-Signature`.
- libopenarc = `ARC-Message-Signature` headers covering a limited body length
Expand Down
10 changes: 5 additions & 5 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ AC_PREREQ(2.61)
# Package version
#
m4_define([VERSION_RELEASE], 1)
m4_define([VERSION_MAJOR_REV], 1)
m4_define([VERSION_MINOR_REV], 1)
m4_define([VERSION_MAJOR_REV], 2)
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,9 +25,9 @@ m4_define([VERSION_PRE], [pre0])
# - bump age with backwards compatible API additions, reset age with
# removal or modification
#
m4_define([LIBVERSION_CURRENT], 1)
m4_define([LIBVERSION_CURRENT], 2)
m4_define([LIBVERSION_REVISION], 0)
m4_define([LIBVERSION_AGE], 0)
m4_define([LIBVERSION_AGE], 1)

#
# Autotools setup
Expand Down

0 comments on commit 89e49e0

Please sign in to comment.