From 2dbeea2f1dcc28e325c11865f8661b6db66e4dab Mon Sep 17 00:00:00 2001 From: Hubert Chathi Date: Mon, 6 Dec 2021 11:01:21 -0500 Subject: [PATCH] release 3.2.7 --- CHANGELOG.rst | 10 ++++++++++ CMakeLists.txt | 2 +- OLMKit.podspec | 2 +- Package.swift | 2 +- android/gradle.properties | 2 +- common.mk | 2 +- javascript/package.json | 2 +- python/olm/__version__.py | 2 +- 8 files changed, 17 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1ebe034..71e86a1 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,13 @@ +Changes in `3.2.7 `_ +========================================================================= + +This release includes the following changes since 3.2.6: + +* Fix installation with the Makefile. +* Fix exporting again, so we only export olm symbols. +* Fix WASM build. Thanks to Benjamin Kampmann. +* Add more functions for fallback keys. + Changes in `3.2.6 `_ ========================================================================= diff --git a/CMakeLists.txt b/CMakeLists.txt index 0c53d22..f1b643e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.4) -project(olm VERSION 3.2.6 LANGUAGES CXX C) +project(olm VERSION 3.2.7 LANGUAGES CXX C) option(OLM_TESTS "Build tests" ON) option(BUILD_SHARED_LIBS "Build as a shared library" ON) diff --git a/OLMKit.podspec b/OLMKit.podspec index 775542a..67aac4a 100644 --- a/OLMKit.podspec +++ b/OLMKit.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| # The libolm version MAJOR = 3 MINOR = 2 - PATCH = 6 + PATCH = 7 s.name = "OLMKit" s.version = "#{MAJOR}.#{MINOR}.#{PATCH}" diff --git a/Package.swift b/Package.swift index 1d37e76..36f3b67 100644 --- a/Package.swift +++ b/Package.swift @@ -2,7 +2,7 @@ import PackageDescription -let major = 3, minor = 2, patch = 6 +let major = 3, minor = 2, patch = 7 let package = Package( name: "Olm", diff --git a/android/gradle.properties b/android/gradle.properties index 37853c8..ce70d05 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -24,4 +24,4 @@ org.gradle.configureondemand=false GROUP=org.matrix.android ARTIFACT_ID=olm -VERSION_NAME=3.2.6 +VERSION_NAME=3.2.7 diff --git a/common.mk b/common.mk index cc0e7f0..e99e103 100644 --- a/common.mk +++ b/common.mk @@ -1,4 +1,4 @@ MAJOR := 3 MINOR := 2 -PATCH := 6 +PATCH := 7 diff --git a/javascript/package.json b/javascript/package.json index 9b8852e..6a1d80b 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "@matrix-org/olm", - "version": "3.2.6", + "version": "3.2.7", "description": "An implementation of the Double Ratchet cryptographic ratchet", "main": "olm.js", "files": [ diff --git a/python/olm/__version__.py b/python/olm/__version__.py index 0ab4b2e..a64854a 100644 --- a/python/olm/__version__.py +++ b/python/olm/__version__.py @@ -2,7 +2,7 @@ __title__ = "python-olm" __description__ = ("python CFFI bindings for the olm " "cryptographic ratchet library") __url__ = "https://github.com/poljar/python-olm" -__version__ = "3.2.6" +__version__ = "3.2.7" __author__ = "Damir Jelić" __author_email__ = "poljar@termina.org.uk" __license__ = "Apache 2.0"