diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7bd74e55..73ec1ff6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,13 @@
## [Unreleased]
+
+## [0.8.26] - 2023-10-30
+### bug fixes
+- **version:** add support for all 3.x versions [1516b4d](https://github.com/fffonion/lua-resty-openssl/commit/1516b4d94ac4621a1b243c14b5133ded81515d28)
+- **x509.csr:** remove extension before adding it [d6ed964](https://github.com/fffonion/lua-resty-openssl/commit/d6ed9648e39f46f7519413489baf021092ccbc49)
+
+
## [0.8.25] - 2023-09-05
### bug fixes
@@ -519,7 +526,8 @@
- **x509:** export pubkey [ede4f81](https://github.com/fffonion/lua-resty-openssl/commit/ede4f817cb0fe092ad6f9ab5d6ecdcde864a9fd8)
-[Unreleased]: https://github.com/fffonion/lua-resty-openssl/compare/0.8.25...HEAD
+[Unreleased]: https://github.com/fffonion/lua-resty-openssl/compare/0.8.26...HEAD
+[0.8.26]: https://github.com/fffonion/lua-resty-openssl/compare/0.8.25...0.8.26
[0.8.25]: https://github.com/fffonion/lua-resty-openssl/compare/0.8.24...0.8.25
[0.8.24]: https://github.com/fffonion/lua-resty-openssl/compare/0.8.23...0.8.24
[0.8.23]: https://github.com/fffonion/lua-resty-openssl/compare/0.8.22...0.8.23
diff --git a/lib/resty/openssl.lua b/lib/resty/openssl.lua
index f1f1e079..da2166c9 100644
--- a/lib/resty/openssl.lua
+++ b/lib/resty/openssl.lua
@@ -25,7 +25,7 @@ try_require_modules()
local _M = {
- _VERSION = '0.8.25',
+ _VERSION = '0.8.26',
}
local libcrypto_name
diff --git a/lua-resty-openssl-0.8.25-1.rockspec b/lua-resty-openssl-0.8.26-1.rockspec
similarity index 99%
rename from lua-resty-openssl-0.8.25-1.rockspec
rename to lua-resty-openssl-0.8.26-1.rockspec
index d0beb041..610b6bdb 100644
--- a/lua-resty-openssl-0.8.25-1.rockspec
+++ b/lua-resty-openssl-0.8.26-1.rockspec
@@ -1,8 +1,8 @@
package = "lua-resty-openssl"
-version = "0.8.25-1"
+version = "0.8.26-1"
source = {
url = "git+https://github.com/fffonion/lua-resty-openssl.git",
- tag = "0.8.25"
+ tag = "0.8.26"
}
description = {
detailed = "FFI-based OpenSSL binding for LuaJIT.",