From 2f23d9942402a8e250bb20bbf0dc81f6898e4e11 Mon Sep 17 00:00:00 2001 From: Hubert Chathi Date: Fri, 8 Apr 2022 16:00:24 -0400 Subject: [PATCH] Release 3.2.11 --- CHANGELOG.rst | 11 +++++++++++ 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, 18 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c4b8fa9..26218d0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,14 @@ +Changes in `3.2.11 `_ +=========================================================================== + +This release includes the following changes since 3.2.10: + +* Fix building documentation. Thanks to Jonas Smedegaard. The documents + written in Markdown are now converted to HTML using Pandoc. +* Add methods for getting unpublished fallback key in Objective-C binding. +* Add public pickle/unpickle methods to Java binding. +* Add wrapper for olm_session_describe to Java binding. Thanks to Alex Baker. + Changes in `3.2.10 `_ =========================================================================== diff --git a/CMakeLists.txt b/CMakeLists.txt index 5791dbe..9a4f521 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.4) -project(olm VERSION 3.2.10 LANGUAGES CXX C) +project(olm VERSION 3.2.11 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 95715a7..7fcbce6 100644 --- a/OLMKit.podspec +++ b/OLMKit.podspec @@ -3,7 +3,7 @@ Pod::Spec.new do |s| # The libolm version MAJOR = 3 MINOR = 2 - PATCH = 10 + PATCH = 11 s.name = "OLMKit" s.version = "#{MAJOR}.#{MINOR}.#{PATCH}" diff --git a/Package.swift b/Package.swift index 2f15af6..2a7f694 100644 --- a/Package.swift +++ b/Package.swift @@ -2,7 +2,7 @@ import PackageDescription -let major = 3, minor = 2, patch = 10 +let major = 3, minor = 2, patch = 11 let package = Package( name: "Olm", diff --git a/android/gradle.properties b/android/gradle.properties index da92aab..793e204 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -26,7 +26,7 @@ org.gradle.configureondemand=false # Ref: https://github.com/vanniktech/gradle-maven-publish-plugin GROUP=org.matrix.android POM_ARTIFACT_ID=olm -VERSION_NAME=3.2.10 +VERSION_NAME=3.2.11 POM_PACKAGING=aar diff --git a/common.mk b/common.mk index de5e9a6..460b9fc 100644 --- a/common.mk +++ b/common.mk @@ -1,4 +1,4 @@ MAJOR := 3 MINOR := 2 -PATCH := 10 +PATCH := 11 diff --git a/javascript/package.json b/javascript/package.json index 260c813..5a28463 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "@matrix-org/olm", - "version": "3.2.10", + "version": "3.2.11", "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 bbcbfe1..16cb6ad 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.10" +__version__ = "3.2.11" __author__ = "Damir Jelić" __author_email__ = "poljar@termina.org.uk" __license__ = "Apache 2.0"