aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Isaac2019-08-09 03:18:45 +0530
committerArun Isaac2019-08-09 03:18:45 +0530
commit2125ee1b6b158781f29fbb7aab61cac6f84ecadf (patch)
tree3b6f5bb9bc14348f3373b4676772c454abf074c1
parentcefb20984f207880e63e78e616e84ada9befed22 (diff)
downloadguile-email-2125ee1b6b158781f29fbb7aab61cac6f84ecadf.tar.gz
guile-email-2125ee1b6b158781f29fbb7aab61cac6f84ecadf.tar.lz
guile-email-2125ee1b6b158781f29fbb7aab61cac6f84ecadf.zip
Bump version to 0.2.0.v0.2.0
* configure.ac: Bump version. * NEWS: New file.
-rw-r--r--NEWS35
-rw-r--r--configure.ac2
2 files changed, 36 insertions, 1 deletions
diff --git a/NEWS b/NEWS
new file mode 100644
index 0000000..170fcfe
--- /dev/null
+++ b/NEWS
@@ -0,0 +1,35 @@
+-*- org -*-
+#+TITLE: guile-email NEWS – History of user-visible changes
+
+Copyright © 2019 Arun Isaac <arunisaac@systemreboot.net>
+
+Please send guile-email bug reports to guile-email@systemreboot.net
+
+* Changes in 0.2.0 (since 0.1.0)
+** API changes
+*** parse-email and parse-email-body accept byevectors
+Prior to this, parse-email and parse-email-body would accept email in
+the form of a string. A string is constrained to use the same encoding
+for all its characters whereas an email can have characters encoded
+using different encoding schemes. Therefore, it is more correct that
+parse-email and parse-email-body deals with bytevectors instead of
+strings. Support for parse-email and parse-email-body accepting is
+retained for backward compatibility, but it may be deprecated in the
+future.
+
+** Noteworthy bug fixes
+*** Decode email with multiple encoding schemes
+https://lists.systemreboot.net/archives/guile-email/2019/000001.html
+*** Decode MIME encoded words in the Subject header
+https://lists.systemreboot.net/archives/guile-email/2019/000002.html
+*** Decode MIME entities without headers
+
+** Other
+*** Documentation
+A first version of the texinfo documentation is now ready.
+*** guile-email@systemreboot.net mailing list
+We now have a mailing list at guile-email@systemreboot.net
+https://lists.systemreboot.net/listinfo/guile-email
+*** guile-email.systemreboot.net website
+We now have a simple one-page website for guile-email at
+[[https://guile-email.systemreboot.net/][guile-email.systemreboot.net]]
diff --git a/configure.ac b/configure.ac
index 5de8c76..1f604c4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -17,7 +17,7 @@ dnl You should have received a copy of the GNU Affero General Public
dnl License along with guile-email. If not, see
dnl <http://www.gnu.org/licenses/>.
-AC_INIT([guile-email], [0.1.0])
+AC_INIT([guile-email], [0.2.0])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([color-tests -Wall -Wno-portability foreign check-news no-dist-gzip dist-lzip])
AM_SILENT_RULES([yes])