From 1929495a869eda68bc244c799d6da131bfb7125b Mon Sep 17 00:00:00 2001 From: Oleg Jukovec Date: Sat, 31 Aug 2024 20:32:06 +0300 Subject: [PATCH 1/2] ci: remove releaser and tagpush workflows Part of #13 --- .github/workflows/releaser.yml | 11 ----------- .github/workflows/tagpush.yml | 12 ------------ 2 files changed, 23 deletions(-) delete mode 100644 .github/workflows/releaser.yml delete mode 100644 .github/workflows/tagpush.yml diff --git a/.github/workflows/releaser.yml b/.github/workflows/releaser.yml deleted file mode 100644 index cdccbf87..00000000 --- a/.github/workflows/releaser.yml +++ /dev/null @@ -1,11 +0,0 @@ -# File managed by web3-bot. DO NOT EDIT. -# See https://github.com/protocol/.github/ for details. - -name: Releaser -on: - push: - paths: [ 'version.json' ] - -jobs: - releaser: - uses: protocol/.github/.github/workflows/releaser.yml@master diff --git a/.github/workflows/tagpush.yml b/.github/workflows/tagpush.yml deleted file mode 100644 index d8499618..00000000 --- a/.github/workflows/tagpush.yml +++ /dev/null @@ -1,12 +0,0 @@ -# File managed by web3-bot. DO NOT EDIT. -# See https://github.com/protocol/.github/ for details. - -name: Tag Push Checker -on: - push: - tags: - - v* - -jobs: - releaser: - uses: protocol/.github/.github/workflows/tagpush.yml@master From 30c1c6d1fca7fac45a504c5acee1a0049d75163e Mon Sep 17 00:00:00 2001 From: Oleg Jukovec Date: Sat, 31 Aug 2024 20:26:45 +0300 Subject: [PATCH 2/2] Release v1.1.0 The release adds more bindings. Added - Bindings for DANE (#14). - Bindings for TLS handshake tracing (#14). - Bindings for `X509_digest()` (#14). - Bindings for `X509_verify_cert_error_string()` (#14). - Bindings for `SSL_get_version()` (#14). --- CHANGELOG.md | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 222f8f89..9e69efbc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,22 +6,27 @@ 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 -- Bindings for [DANE](https://docs.openssl.org/1.1.1/man3/SSL_CTX_dane_enable/). -- Bindings for [TLS handshake tracing](https://docs.openssl.org/master/man3/SSL_CTX_set_msg_callback/). -- Bindings for `X509_digest()`. -- Bindings for `X509_verify_cert_error_string()`. -- Bindings for `SSL_get_version()`. - ### Changed ### Fixed -## [1.0.0] - 2024-02-09 +## [v1.1.0] - 2024-09-02 + +The release adds more bindings. + +### Added + +- Bindings for [DANE](https://docs.openssl.org/1.1.1/man3/SSL_CTX_dane_enable/) (#14). +- Bindings for [TLS handshake tracing](https://docs.openssl.org/master/man3/SSL_CTX_set_msg_callback/) (#14). +- Bindings for `X509_digest()` (#14). +- Bindings for `X509_verify_cert_error_string()` (#14). +- Bindings for `SSL_get_version()` (#14). + +## [v1.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