Skip to content
This repository was archived by the owner on Feb 29, 2024. It is now read-only.

Commit 6df1762

Browse files
committed
Bump version numbers for 1.16.0 sdk release
Signed-off-by: Ian Costanzo <[email protected]>
1 parent 7d94847 commit 6df1762

File tree

23 files changed

+118
-37
lines changed

23 files changed

+118
-37
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.16.0 - 2020-11-17
4+
* TODO change summary
5+
* Bugfixes
6+
37
## 1.15.0 - 2020-03-25
48
* Correction for `Fix proof verification in case of credential attribute encoded value contains leading zeros` (IS-1491).
59
Indy 1.14.3 changes "0" to "" which leads to proof rejection.

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,7 @@ The documents that provide necessary information for Libindy migrations.
345345
* [v1.12.0 → v1.13.x](docs/migration-guides/migration-guide-1.12.0-1.13.0.md)
346346
* [v1.13.0 → v1.14.x](docs/migration-guides/migration-guide-1.13.0-1.14.0.md)
347347
* [v1.14.0 → v1.15.x](docs/migration-guides/migration-guide-1.14.0-1.15.0.md)
348+
* [v1.15.0 → v1.16.x](docs/migration-guides/migration-guide-1.15.0-1.16.0.md)
348349

349350
## How to Contribute
350351
* We'd love your help; see these [HL Indy Wiki](https://wiki.hyperledger.org/display/indy/How+to+Contribute) and [slides on how to contribute](http://bit.ly/2ugd0bq).
+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "libindy",
3+
"version": "1.16.0",
4+
"summary": "Summary TODO.",
5+
"description": "Description TODO.",
6+
"homepage": "TODO",
7+
"license": {
8+
"type": "Apache License 2.0",
9+
"file": "LICENSE"
10+
},
11+
"authors": {
12+
"Daniel Hardman": "[email protected]"
13+
},
14+
"platforms": {
15+
"ios": "10.0"
16+
},
17+
"source": {
18+
"http": "https://repo.sovrin.org/ios/libindy/stable/libindy-core/1.16.0/libindy.tar.gz"
19+
},
20+
"source_files": "*.h",
21+
"vendored_libraries": "*.a",
22+
"requires_arc": false
23+
}

cli/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "indy-cli"
3-
version = "1.15.0"
3+
version = "1.16.0"
44
authors = ["Hyperledger Indy Contributors <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
description = """\
@@ -34,10 +34,10 @@ serde_json = "1.0.40"
3434
serde_derive = "1.0.97"
3535
term = "0.4.6"
3636
rpassword = "1.0.0"
37-
indy = { version = "1.15.0", path = "../wrappers/rust/" }
37+
indy = { version = "1.16.0", path = "../wrappers/rust/" }
3838

3939
[package.metadata.deb]
40-
depends = "libindy (= 1.15.0), libncursesw5-dev"
40+
depends = "libindy (= 1.16.0), libncursesw5-dev"
4141
section = "devel"
4242
priority = "optional"
4343
assets = [
@@ -48,8 +48,8 @@ changelog = "./debian/changelog"
4848

4949
[package.metadata.deb.variants.indy-cli-xenial]
5050
name = "indy-cli"
51-
provides = "indy-cli (= 1.15.0)"
51+
provides = "indy-cli (= 1.16.0)"
5252

5353
[package.metadata.deb.variants.indy-cli-bionic]
5454
name = "indy-cli"
55-
provides = "indy-cli (= 1.15.0)"
55+
provides = "indy-cli (= 1.16.0)"

cli/debian/changelog

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
indy-cli (1.15.0) unstable; urgency=medium
1+
indy-cli (1.16.0) unstable; urgency=medium
22

33
[ Hyperledger ]
44

5+
## 1.16.0
6+
* Bugfixes
7+
58
## 1.15.0
69
* Bugfixes
710

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!-- markdownlint-disable MD033 -->
2+
3+
# Libindy 1.14 to 1.15 migration Guide
4+
5+
This document is written for developers using Libindy to provide necessary information and
6+
to simplify their transition to Libindy 1.14 from Libindy 1.15. If you are using older Libindy
7+
version you can check migration guides history:
8+
9+
* [Libindy 1.3 to 1.4 migration](https://github.com/hyperledger/indy-sdk/blob/v1.4.0/doc/migration-guide.md)
10+
* [Libindy 1.4 to 1.5 migration](https://github.com/hyperledger/indy-sdk/blob/v1.5.0/doc/migration-guide-1.4.0-1.5.0.md)
11+
* [Libindy 1.5 to 1.6 migration](https://github.com/hyperledger/indy-sdk/blob/v1.6.0/doc/migration-guide-1.5.0-1.6.0.md)
12+
* [Libindy 1.6 to 1.7 migration](https://github.com/hyperledger/indy-sdk/blob/v1.7.0/doc/migration-guide-1.6.0-1.7.0.md)
13+
* [Libindy 1.7 to 1.8 migration](https://github.com/hyperledger/indy-sdk/blob/v1.8.0/doc/migration-guide-1.7.0-1.8.0.md)
14+
* [Libindy 1.8 to 1.9 migration](https://github.com/hyperledger/indy-sdk/blob/v1.9.0/docs/migration-guides/migration-guide-1.8.0-1.9.0.md)
15+
* [Libindy 1.9 to 1.10 migration](https://github.com/hyperledger/indy-sdk/blob/v1.10.0/docs/migration-guides/migration-guide-1.9.0-1.10.0.md)
16+
* [Libindy 1.10 to 1.11 migration](https://github.com/hyperledger/indy-sdk/blob/v1.11.0/docs/migration-guides/migration-guide-1.10.0-1.11.0.md)
17+
* [Libindy 1.11 to 1.12 migration](https://github.com/hyperledger/indy-sdk/blob/v1.12.0/docs/migration-guides/migration-guide-1.11.0-1.12.0.md)
18+
* [Libindy 1.12 to 1.13 migration](https://github.com/hyperledger/indy-sdk/blob/v1.13.0/docs/migration-guides/migration-guide-1.12.0-1.13.0.md)
19+
* [Libindy 1.13 to 1.14 migration](https://github.com/hyperledger/indy-sdk/blob/v1.14.0/docs/migration-guides/migration-guide-1.13.0-1.14.0.md)
20+
* [Libindy 1.14 to 1.15 migration](https://github.com/hyperledger/indy-sdk/blob/v1.15.0/docs/migration-guides/migration-guide-1.14.0-1.15.0.md)
21+
22+
## Table of contents
23+
24+
* [Notes](#notes)
25+
* [Libindy 1.15 to 1.16 migration](#libindy-115-to-116-migration)
26+
27+
## Libindy 1.15 to 1.16 migration
28+
29+
TODO

libindy/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libindy"
3-
version = "1.15.0"
3+
version = "1.16.0"
44
authors = ["Hyperledger Indy Contributors <[email protected]>"]
55
edition = "2018"
66

@@ -102,34 +102,34 @@ maintainer-scripts = "./debian"
102102
changelog = "./debian/changelog"
103103

104104
[package.metadata.deb.variants.libindy-xenial]
105-
provides = "libindy (= 1.15.0)"
105+
provides = "libindy (= 1.16.0)"
106106
name = "libindy"
107107
depends = "libzmq5, libsodium18, libssl1.0.0"
108108
assets = [
109109
["target/release/libindy.so", "usr/lib/", "644"],
110110
]
111111

112112
[package.metadata.deb.variants.libindy-bionic]
113-
provides = "libindy (= 1.15.0)"
113+
provides = "libindy (= 1.16.0)"
114114
name = "libindy"
115115
depends = "libzmq5, libsodium23, libssl1.1"
116116
assets = [
117117
["target/release/libindy.so", "usr/lib/", "644"],
118118
]
119119

120120
[package.metadata.deb.variants.libindy-dev-xenial]
121-
provides = "libindy-dev (= 1.15.0)"
121+
provides = "libindy-dev (= 1.16.0)"
122122
name = "libindy-dev"
123-
depends = "libindy (= 1.15.0)"
123+
depends = "libindy (= 1.16.0)"
124124
assets = [
125125
["include/*.h", "usr/include/indy/", "644"],
126126
["target/release/libindy.a", "usr/lib/", "644"],
127127
]
128128

129129
[package.metadata.deb.variants.libindy-dev-bionic]
130-
provides = "libindy-dev (= 1.15.0)"
130+
provides = "libindy-dev (= 1.16.0)"
131131
name = "libindy-dev"
132-
depends = "libindy (= 1.15.0)"
132+
depends = "libindy (= 1.16.0)"
133133
assets = [
134134
["include/*.h", "usr/include/indy/", "644"],
135135
["target/release/libindy.a", "usr/lib/", "644"],

libindy/debian/changelog

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1-
libindy (1.15.0) unstable; urgency=medium
1+
libindy (1.16.0) unstable; urgency=medium
22

33
[ Hyperledger ]
44

5+
## 1.16.0
6+
* TODO
7+
* Bugfixes
8+
59
## 1.15.0
610
* Correction for `Fix proof verification in case of credential attribute encoded value contains leading zeros` (IS-1491).
711
Indy 1.14.3 changes "0" to "" which leads to proof rejection.

libnullpay/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "null-payment-method"
3-
version = "1.15.0"
3+
version = "1.16.0"
44
authors = ["Hyperledger Indy Contributors <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
description = """\
@@ -35,7 +35,7 @@ indy = { version="1.15.0", path="../wrappers/rust" }
3535
android_logger = "0.5"
3636

3737
[package.metadata.deb]
38-
depends = "libindy (= 1.15.0)"
38+
depends = "libindy (= 1.16.0)"
3939
section = "devel"
4040
priority = "optional"
4141
assets = [
@@ -46,8 +46,8 @@ changelog = "./debian/changelog"
4646

4747
[package.metadata.deb.variants.libnullpay-xenial]
4848
name = "libnullpay"
49-
provides = "libnullpay (= 1.15.0)"
49+
provides = "libnullpay (= 1.16.0)"
5050

5151
[package.metadata.deb.variants.libnullpay-bionic]
5252
name = "libnullpay"
53-
provides = "libnullpay (= 1.15.0)"
53+
provides = "libnullpay (= 1.16.0)"

libnullpay/debian/changelog

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
libnullpay (1.15.0) unstable; urgency=medium
1+
libnullpay (1.16.0) unstable; urgency=medium
22

33
[ Hyperledger ]
44
* Initial release

vcx/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -278,3 +278,4 @@ The documents that provide necessary information for Libvcx migrations.
278278
* [v0.5.x → v0.6.0](docs/migration-guide-0.5.x-0.6.0.md)
279279
* [v0.6.x → v0.7.0](docs/migration-guide-0.6.x-0.7.0.md)
280280
* [v0.7.x → v0.8.0](docs/migration-guide-0.7.x-0.8.0.md)
281+
* [v0.8.x → v0.9.0](docs/migration-guide-0.8.x-0.9.0.md)
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# LibVCX migration guide from 0.8.x to 0.9.0
2+
## A Developer Guide for LibVCX migration
3+
4+
This document is written for developers using LibVCX to provide necessary information and
5+
to simplify their transition to LibVCX 0.9.x from LibVCX 0.8.x.
6+
7+
* [API](#api)
8+
* [Protocols Compatibility](#protocols-compatibility)
9+
10+
#### Protocols compatibility
11+
12+
* TODO

vcx/libvcx/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "libvcx"
4-
version = "0.8.0"
4+
version = "0.9.0"
55
authors = ["Hyperledger Indy Contributors <[email protected]>"]
66
publish = false
77
description = "This is the official SDK for Evernym's VCX"
@@ -43,8 +43,8 @@ rmp-serde = "0.13.7"
4343
base64 = "0.8.0"
4444
openssl = "0.10"
4545
num-traits = "0.2.0"
46-
indy = { version = "1.15.0", path = "../../wrappers/rust/" }
47-
indy-sys = { version = "1.15.0", path = "../../wrappers/rust/indy-sys/" }
46+
indy = { version = "1.16.0", path = "../../wrappers/rust/" }
47+
indy-sys = { version = "1.16.0", path = "../../wrappers/rust/indy-sys/" }
4848
tokio-threadpool = "0.1.6"
4949
futures = "0.1.23"
5050
libloading = "0.5.0"
@@ -64,7 +64,7 @@ serde_json = "1.0"
6464
serde_derive = "1.0"
6565

6666
[package.metadata.deb]
67-
depends = "libindy (= 1.15.0)"
67+
depends = "libindy (= 1.16.0)"
6868
extended-description = """\
6969
This is the official SDK for Hyperledger Indy, which provides a\
7070
distributed-ledger-based foundation for self-sovereign identity.\
@@ -85,11 +85,11 @@ changelog = "./debian/changelog"
8585

8686
[package.metadata.deb.variants.libvcx-xenial]
8787
name = "libvcx"
88-
provides = "libvcx (= 0.8.0)"
88+
provides = "libvcx (= 0.9.0)"
8989

9090
[package.metadata.deb.variants.libvcx-bionic]
9191
name = "libvcx"
92-
provides = "libvcx (= 0.8.0)"
92+
provides = "libvcx (= 0.9.0)"
9393

9494
[profile.release]
9595
debug = true

vcx/libvcx/debian/changelog

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1-
libvcx (0.8.0) unstable; urgency=medium
1+
libvcx (0.9.0) unstable; urgency=medium
22

33
[ Hyperledger ]
44

5+
## 0.9.0
6+
* Bugfixes
7+
* TODO
8+
59
## 0.8.0
610
* Bugfixes
711
* Fixed compatibility between proprietary (`protocol_version`: `2.0`/`1.0`) and aries protocols (`protocol_version`: `3.0`).

vcx/wrappers/java/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ test {
2929
}
3030

3131
static def versionMajor() {
32-
return '0.8.0'
32+
return '0.9.0'
3333
}
3434

3535
static def version() {

vcx/wrappers/node/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"url": "git+https://github.com/evernym/vcx.git",
2626
"type": "git"
2727
},
28-
"version": "0.8.0",
28+
"version": "0.9.0",
2929
"dependencies": {
3030
"@types/ffi": "0.0.19",
3131
"@types/node": "^8.0.47",
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
python3-indy==1.13.0
2-
python3-wrapper-vcx==0.6.2
1+
python3-indy==1.16.0
2+
python3-wrapper-vcx==0.9.0

vcx/wrappers/python3/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup, find_packages
22
import os
33

4-
PKG_VERSION = os.environ.get('PACKAGE_VERSION') or '0.8.0'
4+
PKG_VERSION = os.environ.get('PACKAGE_VERSION') or '0.9.0'
55
PKG_NAME = os.environ.get('PACKAGE_NAME') or 'python3-wrapper-vcx'
66

77
setup(

wrappers/java/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>org.hyperledger</groupId>
66
<artifactId>indy</artifactId>
77
<packaging>jar</packaging>
8-
<version>1.15.0</version>
8+
<version>1.16.0</version>
99
<name>indy</name>
1010
<description>This is the official SDK for Hyperledger Indy (https://www.hyperledger.org/projects),
1111
which provides a distributed-ledger-based foundation for self-sovereign identity (https://sovrin.org).

wrappers/nodejs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "indy-sdk",
3-
"version": "1.15.0",
3+
"version": "1.16.0",
44
"description": "Native bindings for hyperledger indy",
55
"author": "hyperledger",
66
"license": "Apache-2.0",

wrappers/python/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from distutils.core import setup
22
import os
33

4-
PKG_VERSION = os.environ.get('PACKAGE_VERSION') or '1.15.0'
4+
PKG_VERSION = os.environ.get('PACKAGE_VERSION') or '1.16.0'
55

66
TEST_DEPS = [
77
'pytest<3.7', 'pytest-asyncio==0.10.0', 'base58'

wrappers/rust/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "indy"
3-
version = "1.15.0"
3+
version = "1.16.0"
44
description = "A library for assisting developers using LibIndy API"
55
authors = ["Hyperledger Indy Contributors <[email protected]>"]
66
homepage = "https://github.com/hyperledger/indy-sdk"
@@ -24,7 +24,7 @@ lazy_static = "1.3"
2424
log = { version = "0.4.1", features = ["std"] }
2525
num-traits = "0.2"
2626
num-derive = "0.2"
27-
indy-sys = { path ="indy-sys", version = "=1.15.0" }
27+
indy-sys = { path ="indy-sys", version = "=1.16.0" }
2828
libc = "=0.2.66"
2929
serde_json = "1.0.40"
3030
serde_derive = "1.0.97"

wrappers/rust/indy-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "indy-sys"
33
description = "FFI bindings to Libindy C API"
4-
version = "1.15.0"
4+
version = "1.16.0"
55
authors = ["Hyperledger Indy Contributors <[email protected]>"]
66
build = "build.rs"
77
links = "indy"

0 commit comments

Comments
 (0)