release 3.2.15
This commit is contained in:
parent
366520ebfd
commit
66294cf7f6
11 changed files with 44 additions and 16 deletions
|
@ -1,3 +1,16 @@
|
||||||
|
Changes in `3.2.15 <https://gitlab.matrix.org/matrix-org/olm/tags/3.2.15>`_
|
||||||
|
===========================================================================
|
||||||
|
|
||||||
|
This release includes the following changes since 3.2.15:
|
||||||
|
|
||||||
|
* Improvements to Python packaging
|
||||||
|
* No longer depend on ``future`` since Python 2 is no longer supported.
|
||||||
|
* Improve compatibility with tox 4.
|
||||||
|
* Add support for making standalone sdist.
|
||||||
|
* Improvements to Nix flake (Thanks to Jon Ringer)
|
||||||
|
* Improve structure.
|
||||||
|
* Enable Darwin builds.
|
||||||
|
|
||||||
Changes in `3.2.14 <https://gitlab.matrix.org/matrix-org/olm/tags/3.2.14>`_
|
Changes in `3.2.14 <https://gitlab.matrix.org/matrix-org/olm/tags/3.2.14>`_
|
||||||
===========================================================================
|
===========================================================================
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
cmake_minimum_required(VERSION 3.4)
|
cmake_minimum_required(VERSION 3.4)
|
||||||
|
|
||||||
project(olm VERSION 3.2.14 LANGUAGES CXX C)
|
project(olm VERSION 3.2.15 LANGUAGES CXX C)
|
||||||
|
|
||||||
option(OLM_TESTS "Build tests" ON)
|
option(OLM_TESTS "Build tests" ON)
|
||||||
option(BUILD_SHARED_LIBS "Build as a shared library" ON)
|
option(BUILD_SHARED_LIBS "Build as a shared library" ON)
|
||||||
|
|
|
@ -3,7 +3,7 @@ Pod::Spec.new do |s|
|
||||||
# The libolm version
|
# The libolm version
|
||||||
MAJOR = 3
|
MAJOR = 3
|
||||||
MINOR = 2
|
MINOR = 2
|
||||||
PATCH = 14
|
PATCH = 15
|
||||||
|
|
||||||
s.name = "OLMKit"
|
s.name = "OLMKit"
|
||||||
s.version = "#{MAJOR}.#{MINOR}.#{PATCH}"
|
s.version = "#{MAJOR}.#{MINOR}.#{PATCH}"
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
import PackageDescription
|
import PackageDescription
|
||||||
|
|
||||||
let major = 3, minor = 2, patch = 14
|
let major = 3, minor = 2, patch = 15
|
||||||
|
|
||||||
let package = Package(
|
let package = Package(
|
||||||
name: "Olm",
|
name: "Olm",
|
||||||
|
|
15
README.md
15
README.md
|
@ -52,13 +52,16 @@ You can use pre-built npm packages, available at
|
||||||
|
|
||||||
#### Python
|
#### Python
|
||||||
|
|
||||||
Pre-built packages for Python are available for certain architectures at
|
A Python source package and pre-built packages for certain architectures from
|
||||||
<https://gitlab.matrix.org/matrix-org/olm/-/packages?type=PyPI>. They can be
|
<https://pypi.org/project/python-olm/>. If a pre-built package is not
|
||||||
installed by running
|
available for your architecture, you will need:
|
||||||
|
|
||||||
```bash
|
- cmake (recommended) or GNU make
|
||||||
pip install python-olm --extra-index-url https://gitlab.matrix.org/api/v4/projects/27/packages/pypi/simple
|
- a C/C++ compiler
|
||||||
```
|
|
||||||
|
to build the source package.
|
||||||
|
|
||||||
|
You can then run `pip install python-olm`.
|
||||||
|
|
||||||
Currently, we try to provide packages for all supported versions of Python on
|
Currently, we try to provide packages for all supported versions of Python on
|
||||||
x86-64, i686, and aarch64, but we cannot guarantee that packages for all
|
x86-64, i686, and aarch64, but we cannot guarantee that packages for all
|
||||||
|
|
|
@ -26,7 +26,7 @@ org.gradle.configureondemand=false
|
||||||
# Ref: https://github.com/vanniktech/gradle-maven-publish-plugin
|
# Ref: https://github.com/vanniktech/gradle-maven-publish-plugin
|
||||||
GROUP=org.matrix.android
|
GROUP=org.matrix.android
|
||||||
POM_ARTIFACT_ID=olm
|
POM_ARTIFACT_ID=olm
|
||||||
VERSION_NAME=3.2.14
|
VERSION_NAME=3.2.15
|
||||||
|
|
||||||
POM_PACKAGING=aar
|
POM_PACKAGING=aar
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
|
|
||||||
MAJOR := 3
|
MAJOR := 3
|
||||||
MINOR := 2
|
MINOR := 2
|
||||||
PATCH := 14
|
PATCH := 15
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@matrix-org/olm",
|
"name": "@matrix-org/olm",
|
||||||
"version": "3.2.14",
|
"version": "3.2.15",
|
||||||
"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": [
|
||||||
|
|
|
@ -15,6 +15,18 @@ found [here][6].
|
||||||
|
|
||||||
The full API reference can be found [here][7].
|
The full API reference can be found [here][7].
|
||||||
|
|
||||||
|
# Installation instructions
|
||||||
|
|
||||||
|
To install from the source package, you will need:
|
||||||
|
|
||||||
|
- cmake (recommended) or GNU make
|
||||||
|
- a C/C++ compiler
|
||||||
|
|
||||||
|
You can then run `pip install python-olm`.
|
||||||
|
|
||||||
|
This should work in UNIX-like environments, including macOS, and may work in
|
||||||
|
other environments too, but is known to not work yet in Windows.
|
||||||
|
|
||||||
# Accounts
|
# Accounts
|
||||||
|
|
||||||
Accounts create and hold the central identity of the Olm protocol, they consist of a fingerprint and identity
|
Accounts create and hold the central identity of the Olm protocol, they consist of a fingerprint and identity
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
__title__ = "python-olm"
|
__title__ = "python-olm"
|
||||||
__description__ = ("python CFFI bindings for the olm "
|
__description__ = ("python CFFI bindings for the olm "
|
||||||
"cryptographic ratchet library")
|
"cryptographic ratchet library")
|
||||||
__url__ = "https://github.com/poljar/python-olm"
|
__url__ = "https://gitlab.matrix.org/matrix-org/olm/-/tree/master/python"
|
||||||
__version__ = "3.2.14"
|
__version__ = "3.2.15"
|
||||||
__author__ = "Damir Jelić"
|
__author__ = "Damir Jelić"
|
||||||
__author_email__ = "poljar@termina.org.uk"
|
__author_email__ = "poljar@termina.org.uk"
|
||||||
__license__ = "Apache 2.0"
|
__license__ = "Apache 2.0"
|
||||||
__copyright__ = "Copyright 2018-2019 Damir Jelić"
|
__copyright__ = "Copyright 2018-2019 Damir Jelić, 2019-2023 The Matrix.org Foundation C.I.C."
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[project]
|
[project]
|
||||||
name = "python-olm"
|
name = "python-olm"
|
||||||
version = "3.2.14"
|
version = "3.2.15"
|
||||||
description = "python CFFI bindings for the olm cryptographic ratchet library"
|
description = "python CFFI bindings for the olm cryptographic ratchet library"
|
||||||
authors = [{name = "Damir Jelić", email = "poljar@termina.org.uk"}]
|
authors = [{name = "Damir Jelić", email = "poljar@termina.org.uk"}]
|
||||||
classifiers = [
|
classifiers = [
|
||||||
|
|
Loading…
Reference in a new issue