Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.0.24 #184

Merged
merged 1 commit into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
2.0.24 January 31, 2024

- Fix --clean option (#178, #179)
- Add the ignore_mdc_error flag setter and getter (#180)
- Add workaround for building gpgme with musl >= 1.2.4 (#181)
- Don't add gem root to LOAD_PATH (#120)

2.0.23 August 16, 2023

- Fix incompatible function pointer types with “gpgme_op_keylist_ext_start” (Clang 16) (#176)
Expand Down
4 changes: 2 additions & 2 deletions gpgme.gemspec
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Gem::Specification.new do |s|
s.name = 'gpgme'
s.version = '2.0.23'
s.version = '2.0.24'
s.authors = ['Daiki Ueno', 'Albert Llop']
s.date = '2023-08-16'
s.date = '2024-01-31'
s.email = 'ueno@gnu.org'
s.extensions = ['ext/gpgme/extconf.rb']
s.files = Dir['{lib,ext,test,examples}/**/*'] +
Expand Down
2 changes: 1 addition & 1 deletion lib/gpgme/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module GPGME
# The version of GPGME ruby binding you are using
VERSION = "2.0.23"
VERSION = "2.0.24"
end
Loading