Skip to content

Commit 1774122

Browse files
authored
Merge branch 'master' into android_builds
2 parents 7ba938c + 891a41a commit 1774122

File tree

22 files changed

+70
-20
lines changed

22 files changed

+70
-20
lines changed

Jenkinsfile.cd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ def publishingRCtoStable() {
627627
publishLibindyCliWindowsFilesRCtoStable(libindyVersion)
628628

629629
echo 'Moving Windows RC artifacts to Stable: libnullpay'
630-
publishLibnullpayWindowsFilesRCtoStable(libindyVersion)
630+
publishLibnullpayWindowsFilesRCtoStable()
631631

632632
echo 'Moving Ubuntu RC artifacts to Stable: libnullpay'
633633
publishLibnullpayDebRCtoStable(testEnv)
@@ -674,7 +674,7 @@ def publishLibindyCliDebRCtoStable(testEnv, version) {
674674

675675
def publishLibnullpayDebRCtoStable(testEnv) {
676676
def libnullpayVersion = getSrcVersion("libnullpay")
677-
publishDebRCtoStable(testEnv, "libnullpay", "libnullpay", libnullpayVersion, "libindyCliDebs", false)
677+
publishDebRCtoStable(testEnv, "libnullpay", "libnullpay", libnullpayVersion, "libnullpayDebs", false)
678678
}
679679

680680
def publishDebRCtoStable(testEnv, packageName, folder, version, stashName, moveDevArtifacts) {
@@ -683,7 +683,7 @@ def publishDebRCtoStable(testEnv, packageName, folder, version, stashName, moveD
683683

684684
unstash name: stashName
685685

686-
sh "fakeroot deb-reversion -v $version $packageName/debs/\"$packageName\"_\"$rcFullVersion\"_amd64.deb"
686+
sh "fakeroot deb-reversion -v $version $folder/debs/\"$packageName\"_\"$rcFullVersion\"_amd64.deb"
687687

688688
if (moveDevArtifacts) {
689689
sh "fakeroot deb-reversion -v $version $folder/debs/\"$packageName\"-dev_\"$rcFullVersion\"_amd64.deb"
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "libindy-objc",
3+
"version": "1.5.0",
4+
"summary": "Summary TODO.",
5+
"homepage": "TODO",
6+
"license": {
7+
"type": "Apache License 2.0",
8+
"file": "LICENSE"
9+
},
10+
"authors": {
11+
"Daniel Hardman": "[email protected]"
12+
},
13+
"source": {
14+
"http": "https://repo.sovrin.org/ios/libindy/stable/indy-objc/1.5.0/libindy-objc.zip"
15+
},
16+
"platforms": {
17+
"ios": "10.0"
18+
},
19+
"ios": {
20+
"vendored_frameworks": "libindy-objc/Indy.framework"
21+
},
22+
"module_name": "Indy"
23+
}
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "libindy",
3+
"version": "1.5.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.5.0/libindy.tar.gz"
19+
},
20+
"source_files": "*.h",
21+
"vendored_libraries": "*.a",
22+
"requires_arc": false
23+
}

ci/indy-pool.dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ RUN echo "deb https://repo.sovrin.org/deb xenial $indy_stream" >> /etc/apt/sourc
2424

2525
RUN useradd -ms /bin/bash -u $uid indy
2626

27-
ARG indy_plenum_ver=1.4.406
27+
ARG indy_plenum_ver=1.4.419
2828
ARG indy_anoncreds_ver=1.0.32
29-
ARG indy_node_ver=1.4.463
29+
ARG indy_node_ver=1.4.480
3030
ARG python3_indy_crypto_ver=0.4.1
3131
ARG indy_crypto_ver=0.4.0
3232

cli/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "indy-cli"
3-
version = "0.1.0"
3+
version = "1.5.0"
44
authors = ["Vyacheslav Gudkov <[email protected]>"]
55

66
[features]

cli/debian/changelog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
indy-cli (0.1.0) unstable; urgency=medium
1+
indy-cli (1.5.0) unstable; urgency=medium
22

33
[ Hyperledger ]
44
* Created Indy-Cli

libindy/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libindy/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "indy"
3-
version = "1.4.0"
3+
version = "1.5.0"
44
authors = [
55
"Sergej Pupykin <[email protected]>",
66
"Vyacheslav Gudkov <[email protected]>",

libindy/src/commands/anoncreds/tails.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ pub fn store_tails_from_generator(service: Rc<BlobStorageService>,
8383

8484
let version = vec![0u8, TAILS_BLOB_TAG_SZ];
8585
hasher.process(version.as_slice());
86-
service.append(blob_handle, version.as_slice());
86+
service.append(blob_handle, version.as_slice())?;
8787

8888
while let Some(tail) = rtg.next()? {
8989
let tail_bytes = tail.to_bytes()?;

0 commit comments

Comments
 (0)