From 6c26e421ca14eebe8f8be41ca45026f47cf55a77 Mon Sep 17 00:00:00 2001 From: Aapo Talvensaari Date: Tue, 6 Apr 2021 14:35:53 +0300 Subject: [PATCH] chore(*) release 2.0 --- Changes.md | 6 +++--- lib/resty/nettle.lua | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Changes.md b/Changes.md index bef1abd..434da6f 100644 --- a/Changes.md +++ b/Changes.md @@ -3,11 +3,11 @@ All notable changes to `lua-resty-nettle` will be documented in this file. -## [2.0] - Upcoming +## [2.0] - 2020-04-06 ### Added - Add Streebog hashing algorithms (256 and 512) - Add PBKDF2 HMAC-SHA384 and HMAC-SHA512 variants -- Add support for Nettle 3.6.x and Nettle 3.7.x +- Add support for Nettle 3.7.x - Add support for GC256B and GC512A ECC curves - Add support for SHA3 256 SHAKE - Add support for ARCTWO (RC2) @@ -27,8 +27,8 @@ All notable changes to `lua-resty-nettle` will be documented in this file. - ARCFOUR (RC4) maximum key size is raised from 256 bits to 2048 bits ### Changed +- Drop (official) support for Nettle < 3.7.x -- Drop support for Nettle < 3.7.x ## [1.5] - 2020-04-01 ### Fixed diff --git a/lib/resty/nettle.lua b/lib/resty/nettle.lua index d159ee0..b46edbb 100644 --- a/lib/resty/nettle.lua +++ b/lib/resty/nettle.lua @@ -1,5 +1,5 @@ return { - _VERSION = "1.5", + _VERSION = "2.0", aes = require "resty.nettle.aes", arcfour = require "resty.nettle.arcfour", arctwo = require "resty.nettle.arctwo",