Skip to content

Commit a9a2bb9

Browse files
committed
Prepare version 2.0.1 release
1 parent 40b4b0f commit a9a2bb9

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
## [2.0.1] - 20th of June, 2025
10+
11+
### Changed
12+
- Nothing about the functionality of libxeddsa was changed, however adjustments to the build system were made and libsodium has been updated.
13+
914
## [2.0.0] - 2nd of April, 2022
1015

1116
### Added
@@ -22,6 +27,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
2227
### Added
2328
- An implementation of XEdDSA for Curve25519 keys, consisting of a function for signing using a Curve25519 private key and public key conversion from Curve25519 to Ed25519.
2429

25-
[Unreleased]: https://github.com/Syndace/libxeddsa/compare/v2.0.0...HEAD
30+
[Unreleased]: https://github.com/Syndace/libxeddsa/compare/v2.0.1...HEAD
31+
[2.0.1]: https://github.com/Syndace/libxeddsa/compare/v2.0.0...v2.0.1
2632
[2.0.0]: https://github.com/Syndace/libxeddsa/compare/v1.0.0...v2.0.0
2733
[1.0.0]: https://github.com/Syndace/libxeddsa/releases/tag/v1.0.0

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.10)
2-
project(libxeddsa VERSION 2.0.0 LANGUAGES C)
2+
project(libxeddsa VERSION 2.0.1 LANGUAGES C)
33

44
include(CTest)
55

src/version.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
const unsigned XEDDSA_VERSION_MAJOR = 2;
44
const unsigned XEDDSA_VERSION_MINOR = 0;
5-
const unsigned XEDDSA_VERSION_REVISION = 0;
5+
const unsigned XEDDSA_VERSION_REVISION = 1;

0 commit comments

Comments
 (0)