aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2020-11-17 17:45:46 +0100
committerLoïc Hoguin <[email protected]>2020-11-17 17:47:38 +0100
commitbda81ceebe9247cdf7a940e736901859376e6581 (patch)
tree5979f0eefed1a3c3c757bf250115c5928d1dbf3c
parent6780fdbdeff194d9d240116ad4f347c2208496ee (diff)
downloadcowlib-bda81ceebe9247cdf7a940e736901859376e6581.tar.gz
cowlib-bda81ceebe9247cdf7a940e736901859376e6581.tar.bz2
cowlib-bda81ceebe9247cdf7a940e736901859376e6581.zip
Cowlib 2.10.1
-rw-r--r--Makefile20
-rw-r--r--ebin/cowlib.app2
2 files changed, 18 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index e11e2a9..ee1ea49 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,7 @@
PROJECT = cowlib
PROJECT_DESCRIPTION = Support library for manipulating Web protocols.
-PROJECT_VERSION = 2.10.0
+PROJECT_VERSION = 2.10.1
# Options.
@@ -38,6 +38,18 @@ AUTO_CI_HIPE ?= OTP-LATEST
# AUTO_CI_ERLLVM ?= OTP-LATEST
AUTO_CI_WINDOWS ?= OTP-21+
+# Hex configuration.
+
+define HEX_TARBALL_EXTRA_METADATA
+#{
+ licenses => [<<"ISC">>],
+ links => #{
+ <<"Function reference">> => <<"https://ninenines.eu/docs/en/cowlib/2.10/manual/">>,
+ <<"GitHub">> => <<"https://github.com/ninenines/cowlib">>
+ }
+}
+endef
+
# Standard targets.
include erlang.mk
@@ -85,9 +97,11 @@ perfs: test-build
# Prepare for the release.
prepare_tag:
+ $(verbose) $(warning Hex metadata: $(HEX_TARBALL_EXTRA_METADATA))
+ $(verbose) echo
$(verbose) echo -n "Most recent tag: "
- $(verbose) git tag | tail -n1
- $(verbose) git verify-tag `git tag | tail -n1`
+ $(verbose) git tag --sort taggerdate | tail -n1
+ $(verbose) git verify-tag `git tag --sort taggerdate | tail -n1`
$(verbose) echo -n "MAKEFILE: "
$(verbose) grep -m1 PROJECT_VERSION Makefile
$(verbose) echo -n "APP: "
diff --git a/ebin/cowlib.app b/ebin/cowlib.app
index 5f69423..d089998 100644
--- a/ebin/cowlib.app
+++ b/ebin/cowlib.app
@@ -1,6 +1,6 @@
{application, 'cowlib', [
{description, "Support library for manipulating Web protocols."},
- {vsn, "2.10.0"},
+ {vsn, "2.10.1"},
{modules, ['cow_base64url','cow_cookie','cow_date','cow_hpack','cow_http','cow_http2','cow_http2_machine','cow_http_hd','cow_http_struct_hd','cow_http_te','cow_iolists','cow_link','cow_mimetypes','cow_multipart','cow_qs','cow_spdy','cow_sse','cow_uri','cow_uri_template','cow_ws']},
{registered, []},
{applications, [kernel,stdlib,crypto]},