Skip to content

Commit

Permalink
Bumped version to 3.2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
jstedfast committed Mar 18, 2022
1 parent 2d6c9b4 commit c8ece5e
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ config.lt
config.status
config.sub
configure
configure~
depcomp
doltcompile
doltlibtool
Expand All @@ -25,3 +26,7 @@ libtool
ltmain.sh
missing
stamp-h1
*.tar.xz
*.sha256sum
.DS_Store
update-copyright.sh
3 changes: 3 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,6 @@ dist-hook: $(BUILD_EXTRA_DIST)

gmime-$(GMIME_API_VERSION).pc: gmime.pc
-cp gmime.pc gmime-$(GMIME_API_VERSION).pc

release: dist
shasum -a 256 gmime-$(GMIME_VERSION).tar.xz > gmime-$(GMIME_VERSION).sha256sum
10 changes: 10 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
### GMime 3.2.10

* Improved performance of base64 encoder by ~5%.

* Improved performance of base64 decoder by ~25%.

* Unref the autocrypt header after adding it to the list. (issue #118)

* Work around a bug in g_time_zone_new_offset() by using identifiers instead. (issue #120)

### GMime 3.2.9

* g_mime_multipart_signed_verify() now allows type/subtype and type/x-subtype signature parts. (issue #115)
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ AC_PREREQ([2.71])
#
m4_define([gmime_major_version], [3])
m4_define([gmime_minor_version], [2])
m4_define([gmime_micro_version], [9])
m4_define([gmime_interface_age], [1])
m4_define([gmime_micro_version], [10])
m4_define([gmime_interface_age], [2])
m4_define([gmime_binary_age],
[m4_eval(100 * gmime_minor_version + gmime_micro_version)])
m4_define([gmime_version],
Expand Down

0 comments on commit c8ece5e

Please sign in to comment.