Skip to content

Commit be56c1e

Browse files
committed
Version 1.11.11
1 parent 25bae5d commit be56c1e

File tree

5 files changed

+18
-4
lines changed

5 files changed

+18
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 1.11.11 (2025-11-17)
4+
5+
* Fixes
6+
* EC key decode/encode issues in OTP 28; see [#180](https://github.com/potatosalad/erlang-jose/pull/180), [#181](https://github.com/potatosalad/erlang-jose/pull/181), [#182](https://github.com/potatosalad/erlang-jose/pull/182), [#179](https://github.com/potatosalad/erlang-jose/pull/179)
7+
* EdDSA key issues with OTP 27.1.3+; see [#177](https://github.com/potatosalad/erlang-jose/pull/177)
8+
* Notes
9+
* This will hopefully be one of the last 1.x releases, next release will be [2.x](https://github.com/potatosalad/erlang-jose/tree/2.x)
10+
311
## 1.11.10 (2024-04-17)
412

513
* Fixes

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PROJECT = jose
22
PROJECT_DESCRIPTION = JSON Object Signing and Encryption (JOSE) for Erlang and Elixir.
3-
PROJECT_VERSION = 1.11.10
3+
PROJECT_VERSION = 1.11.11
44

55
TEST_DEPS = jiffy jsone jsx libdecaf libsodium ojson proper thoas
66

erlang.mk

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
ERLANG_MK_FILENAME := $(realpath $(lastword $(MAKEFILE_LIST)))
1818
export ERLANG_MK_FILENAME
1919

20-
ERLANG_MK_VERSION = 7cef74a
20+
ERLANG_MK_VERSION = f440744
2121
ERLANG_MK_WITHOUT =
2222

2323
# Make 3.81 and 3.82 are deprecated.
@@ -1718,6 +1718,12 @@ endef
17181718

17191719
ifeq ($(if $(NO_MAKEDEP),$(wildcard $(PROJECT).d),),)
17201720
$(PROJECT).d:: $(ERL_FILES) $(EX_FILES) $(call core_find,include/,*.hrl) $(MAKEFILE_LIST)
1721+
# Rebuild everything when the .d file does not exist.
1722+
# We touch $@ to make sure the command doesn't fail in empty projects.
1723+
# The file will be generated with content immediately after.
1724+
$(verbose) if ! test -e $@; then \
1725+
touch $@ $(ERL_FILES) $(CORE_FILES) $(ASN1_FILES) $(MIB_FILES) $(XRL_FILES) $(YRL_FILES); \
1726+
fi
17211727
$(makedep_verbose) $(call erlang,$(call makedep.erl,$@))
17221728
endif
17231729

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defmodule JOSE.Mixfile do
44
def project() do
55
[
66
app: :jose,
7-
version: "1.11.10",
7+
version: "1.11.11",
88
elixir: "~> 1.16",
99
erlc_options: erlc_options(),
1010
build_embedded: Mix.env() == :prod,

src/jose.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%% vim: ts=4 sw=4 ft=erlang noet
33
{application, jose, [
44
{description, "JSON Object Signing and Encryption (JOSE) for Erlang and Elixir."},
5-
{vsn, "1.11.10"},
5+
{vsn, "1.11.11"},
66
{id, "git"},
77
{mod, {'jose_app', []}},
88
{registered, []},

0 commit comments

Comments
 (0)