Changelog and version bump for 1.3.0
This commit is contained in:
parent
7647555fc7
commit
ec7d968623
3 changed files with 18 additions and 2 deletions
|
@ -1,3 +1,19 @@
|
||||||
|
Changes in `1.3.0 <http://matrix.org/git/olm/commit/?h=1.3.0>`_
|
||||||
|
===============================================================
|
||||||
|
|
||||||
|
The release updates the group session identifier to avoid collisions.
|
||||||
|
The group sessions are now identified by their ed25519 public key.
|
||||||
|
|
||||||
|
These changes alter the pickle format of outbound group sessions, attempting
|
||||||
|
to unpickle an outbound group session created with a previous version of olm
|
||||||
|
will give ``OLM_CORRUPTED_PICKLE``. Inbound sessions are unaffected.
|
||||||
|
|
||||||
|
This release alters the format of group session_key messages to include the
|
||||||
|
ratchet counter. The session_key messages are now self signed with their
|
||||||
|
ed25519 key. No attempt was made to preserve backwards-compatibility.
|
||||||
|
Attempting to send session_keys between old and new versions will give
|
||||||
|
``OLM_BAD_SESSION_KEY``.
|
||||||
|
|
||||||
Changes in `1.2.0 <http://matrix.org/git/olm/commit/?h=1.2.0>`_
|
Changes in `1.2.0 <http://matrix.org/git/olm/commit/?h=1.2.0>`_
|
||||||
===============================================================
|
===============================================================
|
||||||
|
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/make -f
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
MAJOR := 1
|
MAJOR := 1
|
||||||
MINOR := 2
|
MINOR := 3
|
||||||
PATCH := 0
|
PATCH := 0
|
||||||
VERSION := $(MAJOR).$(MINOR).$(PATCH)
|
VERSION := $(MAJOR).$(MINOR).$(PATCH)
|
||||||
PREFIX ?= /usr/local
|
PREFIX ?= /usr/local
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "olm",
|
"name": "olm",
|
||||||
"version": "1.2.0",
|
"version": "1.3.0",
|
||||||
"description": "An implementation of the Double Ratchet cryptographic ratchet",
|
"description": "An implementation of the Double Ratchet cryptographic ratchet",
|
||||||
"main": "olm.js",
|
"main": "olm.js",
|
||||||
"files": [
|
"files": [
|
||||||
|
|
Loading…
Reference in a new issue