From 8d40b9ca37b51dfc36aecb47e24818fcb7861ed9 Mon Sep 17 00:00:00 2001
From: ygrek <ygrek@autistici.org>
Date: Tue, 19 Jan 2021 18:48:17 -0500
Subject: [PATCH] prepare release 1.7.8

---
 CHANGES  | 5 +++++
 Makefile | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/CHANGES b/CHANGES
index 799e538..fe64687 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,8 @@
+1.7.8 (2021-01-19)
+* sync with OCaml 4.12
+* breaking change: ExtList.find_map type updated to match stdlib (following deprecation in previous release)
+* breaking change: minimal (recommended) build of extlib now excludes Base64 module
+
 1.7.7 (2020-04-24)
 * sync with OCaml 4.10
 * mark ExtList.find_map deprecated in anticipation of type breakage in next release to match OCaml 4.10 function with same name
diff --git a/Makefile b/Makefile
index e9c1f35..f5e94d2 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
 
 VERSION:=$(shell git --git-dir=.git describe --always --long)
-RELEASE:=1.7.7
+RELEASE:=1.7.8
 
 ifndef VERSION
 VERSION:=$(RELEASE)
@@ -32,7 +32,7 @@ NAME=extlib-$(RELEASE)
 release:
 	git tag -a -m $(RELEASE) $(RELEASE)
 	git archive --prefix=$(NAME)/ $(RELEASE) | gzip > $(NAME).tar.gz
-	gpg -a -b $(NAME).tar.gz
+	gpg -a -b $(NAME).tar.gz -o $(NAME).tar.gz.asc
 
 .PHONY: sw_test_all sw_deps_all