Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
David Robertson
Olm
Commits
92769cec
Commit
92769cec
authored
May 30, 2022
by
Hubert Chathi
Browse files
release 3.2.12
parent
d18d12d3
Changes
8
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.rst
View file @
92769cec
Changes in `3.2.12 <https://gitlab.matrix.org/matrix-org/olm/tags/3.2.12>`_
===========================================================================
This release includes the following changes since 3.2.11:
* Expose olm_sas_calculate_mac_fixed_base64 in the bindings.
* Allow memory to grow in wasm. Thanks to benkuly for the suggestion.
* Fix Python type hints.
* Some Python build fixes.
* Initial work on a Nix flake for building and testing.
Changes in `3.2.11 <https://gitlab.matrix.org/matrix-org/olm/tags/3.2.11>`_
===========================================================================
...
...
CMakeLists.txt
View file @
92769cec
cmake_minimum_required
(
VERSION 3.4
)
project
(
olm VERSION 3.2.1
1
LANGUAGES CXX C
)
project
(
olm VERSION 3.2.1
2
LANGUAGES CXX C
)
option
(
OLM_TESTS
"Build tests"
ON
)
option
(
BUILD_SHARED_LIBS
"Build as a shared library"
ON
)
...
...
OLMKit.podspec
View file @
92769cec
...
...
@@ -3,7 +3,7 @@ Pod::Spec.new do |s|
# The libolm version
MAJOR
=
3
MINOR
=
2
PATCH
=
1
1
PATCH
=
1
2
s
.
name
=
"OLMKit"
s
.
version
=
"
#{
MAJOR
}
.
#{
MINOR
}
.
#{
PATCH
}
"
...
...
Package.swift
View file @
92769cec
...
...
@@ -2,7 +2,7 @@
import
PackageDescription
let
major
=
3
,
minor
=
2
,
patch
=
1
1
let
major
=
3
,
minor
=
2
,
patch
=
1
2
let
package
=
Package
(
name
:
"Olm"
,
...
...
android/gradle.properties
View file @
92769cec
...
...
@@ -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.1
1
VERSION_NAME
=
3.2.1
2
POM_PACKAGING
=
aar
...
...
common.mk
View file @
92769cec
MAJOR
:=
3
MINOR
:=
2
PATCH
:=
1
1
PATCH
:=
1
2
javascript/package.json
View file @
92769cec
{
"name"
:
"@matrix-org/olm"
,
"version"
:
"3.2.1
1
"
,
"version"
:
"3.2.1
2
"
,
"description"
:
"An implementation of the Double Ratchet cryptographic ratchet"
,
"main"
:
"olm.js"
,
"files"
:
[
...
...
python/olm/__version__.py
View file @
92769cec
...
...
@@ -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.1
1
"
__version__
=
"3.2.1
2
"
__author__
=
"Damir Jelić"
__author_email__
=
"poljar@termina.org.uk"
__license__
=
"Apache 2.0"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment