diff --git a/NEWS b/NEWS index f2746b0..1b94556 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,12 @@ +2.0.26 February 14, 2025 + +- Fix Data_Get_Struct warnings (#206) +- Update deprecated key editing functions (#207) +- Fix callback encoding (#208) +- More efficient key sign lookups (#209) +- Improve thread safety (#210) +- Fix encryption flags (#211) + 2.0.25 July 26, 2025 - Support GPGME 2.0.0 (#202, #203) diff --git a/gpgme.gemspec b/gpgme.gemspec index 10e56e0..239c516 100644 --- a/gpgme.gemspec +++ b/gpgme.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'gpgme' - s.version = '2.0.25' + s.version = '2.0.26' s.authors = ['Daiki Ueno', 'Albert Llop'] s.date = '2025-07-26' s.email = 'ueno@gnu.org' diff --git a/lib/gpgme/version.rb b/lib/gpgme/version.rb index ab5e0d5..71f8795 100644 --- a/lib/gpgme/version.rb +++ b/lib/gpgme/version.rb @@ -1,4 +1,4 @@ module GPGME # The version of GPGME ruby binding you are using - VERSION = "2.0.25" + VERSION = "2.0.26" end