From b0e256747daf0c2f64e66941b2d655e7959d5034 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`. 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). --- CHANGELOG.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..45685f66 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,36 @@ +# 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`. + +### 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).