prepare v2.2.2
This commit is contained in:
parent
86c6af943a
commit
77eaaa3d5f
5 changed files with 14 additions and 6 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
Changes in `2.2.2 <http://matrix.org/git/olm/commit/?h=2.2.2>`_
|
||||||
|
===============================================================
|
||||||
|
|
||||||
|
Objective-C wrapper:
|
||||||
|
|
||||||
|
* Fixed type of ``messageIndex`` argument in
|
||||||
|
``exportSessionAtMessageIndex``. Thanks to Greg Hughes.
|
||||||
|
|
||||||
Changes in `2.2.1 <http://matrix.org/git/olm/commit/?h=2.2.1>`_
|
Changes in `2.2.1 <http://matrix.org/git/olm/commit/?h=2.2.1>`_
|
||||||
===============================================================
|
===============================================================
|
||||||
|
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
MAJOR := 2
|
MAJOR := 2
|
||||||
MINOR := 2
|
MINOR := 2
|
||||||
PATCH := 1
|
PATCH := 2
|
||||||
VERSION := $(MAJOR).$(MINOR).$(PATCH)
|
VERSION := $(MAJOR).$(MINOR).$(PATCH)
|
||||||
PREFIX ?= /usr/local
|
PREFIX ?= /usr/local
|
||||||
BUILD_DIR := build
|
BUILD_DIR := build
|
||||||
|
|
|
@ -3,7 +3,7 @@ Pod::Spec.new do |s|
|
||||||
# The libolm version
|
# The libolm version
|
||||||
MAJOR = 2
|
MAJOR = 2
|
||||||
MINOR = 2
|
MINOR = 2
|
||||||
PATCH = 1
|
PATCH = 2
|
||||||
|
|
||||||
s.name = "OLMKit"
|
s.name = "OLMKit"
|
||||||
s.version = "#{MAJOR}.#{MINOR}.#{PATCH}"
|
s.version = "#{MAJOR}.#{MINOR}.#{PATCH}"
|
||||||
|
|
|
@ -9,9 +9,9 @@ android {
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdkVersion 11
|
minSdkVersion 11
|
||||||
targetSdkVersion 21
|
targetSdkVersion 21
|
||||||
versionCode 221
|
versionCode 222
|
||||||
versionName "2.2.1"
|
versionName "2.2.2"
|
||||||
version "2.2.1"
|
version "2.2.2"
|
||||||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
buildTypes {
|
buildTypes {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "olm",
|
"name": "olm",
|
||||||
"version": "2.2.1",
|
"version": "2.2.2",
|
||||||
"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