From 8734939e2953cd7f0ee684f4673309f46b682ada Mon Sep 17 00:00:00 2001 From: Oleg Jukovec Date: Thu, 8 Feb 2024 08:32:38 +0300 Subject: [PATCH] Relase 1.0.0 Overview The first release with a number of fixes. Since `libp2p/openssl` is not supported any more we need to support our version for usage in the Golang connector `tarantool/go-tarantool`. See releases of `libp2p/openssl`[1] for previous changes history. New features DialContext function (#10). Bugfixes Build by Golang 1.13 (#6). Build with OpenSSL < 1.1.1 (#7). Build on macOS as a static library (#8). Build on macOS with Apple M1 (#8). Random errors in the code caused by an invalid OpenSSL error handling in LoadPrivateKeyFromPEM, LoadPrivateKeyFromPEMWithPassword, LoadPrivateKeyFromDER and LoadPublicKeyFromPEM (#9). 1. https://github.com/libp2p/go-openssl/releases --- CHANGELOG.md | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..e35e6f69 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,39 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) +and this project adheres to [Semantic +Versioning](http://semver.org/spec/v2.0.0.html) except to the first release. + + +## [Unreleased] + +### Added + +### Changed + +### Fixed + +## [1.0.0] - 2024-02-09 + +The first release with a number of fixes. Since `libp2p/openssl` is not +supported any more we need to support our version for usage in the Golang +connector `tarantool/go-tarantool`. + +See [releases of `libp2p/openssl`](https://github.com/libp2p/go-openssl/releases) +for previous changes history. + +### Added + +- DialContext function (#10). + +### Fixed + +- Build by Golang 1.13 (#6). +- Build with OpenSSL < 1.1.1 (#7). +- Build on macOS as a static library (#8). +- Build on macOS with Apple M1 (#8). +- Random errors in the code caused by an invalid OpenSSL error handling in + LoadPrivateKeyFromPEM, LoadPrivateKeyFromPEMWithPassword, + LoadPrivateKeyFromDER and LoadPublicKeyFromPEM (#9).