Skip to content

Commit

Permalink
Merge pull request #314 from sovrin-foundation/0.9.3
Browse files Browse the repository at this point in the history
release 0.9.3
  • Loading branch information
brentzundel authored Sep 18, 2018
2 parents 86dd332 + ed74172 commit 6aee883
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 22 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
# Changelog
## 0.9.3
* Changed CI/CD to new stable branch.
* CD added to the new stable branch with new stable release process
* Source code is now public Sovrin repository
* changed base-58 library dependency.
* changed rust-indy-sdk dependency to rust crate
* bugfixes

## 0.9.2
* Android and iOS builds in CD pipeline
Expand Down Expand Up @@ -35,4 +42,4 @@ Note: This release requires the user to have libindy installed locally from [the


## 0.7.0
Initial release
Initial release
8 changes: 4 additions & 4 deletions devops/aws-codebuild/Jenkinsfile.ci
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ pipelineWrapper({
// not accurate (it concatenates them):
// debian package version: <src_version>+<release_version>
// debian package name: <src_version><release_version>
def sovtoken_deb_version = "0.9.25.98"
def sovtokenfees_deb_version = "0.9.25.98"
def sovtoken_deb_version = "0.9.3+12.58"
def sovtokenfees_deb_version = "0.9.3+13.58"

sh """
cd ./devops/docker/ci/xenial/
wget --no-check-certificate https://repo.corp.evernym.com/deb/pool/main/s/sovtoken/sovtoken_${sovtoken_deb_version}_amd64.deb
wget --no-check-certificate https://repo.corp.evernym.com/deb/pool/main/s/sovtokenfees/sovtokenfees_${sovtoken_deb_version}_amd64.deb
wget --no-check-certificate https://repo.sovrin.org/deb/pool/xenial/rc/s/sovtoken/sovtoken_${sovtoken_deb_version}_amd64.deb
wget --no-check-certificate https://repo.sovrin.org/deb/pool/xenial/rc/s/sovtokenfees/sovtokenfees_${sovtokenfees_deb_version}_amd64.deb
"""
}
}
Expand Down
2 changes: 1 addition & 1 deletion devops/docker/ci/xenial/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,4 @@ COPY libsovtoken-ci-entrypoint.sh /usr/local/bin/
RUN chmod +x /usr/local/bin/libsovtoken-ci-entrypoint.sh
ENTRYPOINT ["libsovtoken-ci-entrypoint.sh"]

ENV LIBSOVTOKEN_CI_ENV_VERSION=0.42.0
ENV LIBSOVTOKEN_CI_ENV_VERSION=0.45.0
19 changes: 6 additions & 13 deletions devops/indy-pool/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -52,30 +52,23 @@ RUN useradd -m -d /home/indy -s /bin/bash -p $(openssl passwd -1 "token") -u $ui
ARG indy_stream=stable

ARG indy_anoncreds_ver=1.0.11
ARG python3_indy_crypto_ver=0.4.1
ARG indy_crypto_ver=0.4.0
ARG python3_indy_crypto_ver=0.4.3
ARG indy_crypto_ver=0.4.3
ARG indy_plenum_ver=1.6.51
ARG indy_node_ver=1.6.73

ARG sovtoken_pkg_name=sovtoken_0.8.0_amd64.deb
ARG sovtokenfees_pkg_name=sovtokenfees_0.8.0_amd64.deb

RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 68DB5E88
RUN echo "deb https://repo.sovrin.org/deb xenial $indy_stream" >> /etc/apt/sources.list

RUN apt-get update -y && apt-get install -y \
indy-plenum \
indy-node \
indy-plenum=${indy_plenum_ver}\
indy-node=${indy_node_ver} \
indy-anoncreds=${indy_anoncreds_ver} \
python3-indy-crypto=${python3_indy_crypto_ver} \
libindy-crypto=${indy_crypto_ver} \
vim sudo

RUN mkdir -p /usr/local/share/ca-certificates
RUN curl -k https://repo.corp.evernym.com/ca.crt | tee /usr/local/share/ca-certificates/Evernym_Root_CA.crt
RUN update-ca-certificates
RUN echo "10.2.3.179 repo.corp.evernym.com" >>/etc/hosts
RUN update-ca-certificates
RUN curl https://repo.corp.evernym.com/repo.corp.evenym.com-sig.key | apt-key add -
RUN echo 'deb https://repo.corp.evernym.com/deb evernym-agency-dev-ubuntu main' | tee /etc/apt/sources.list.d/agency-dev_repo.corp.evernym.com.list

RUN apt-get update && apt-get install -y --no-install-recommends \
sovtoken \
Expand Down
2 changes: 1 addition & 1 deletion libsovtoken/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libsovtoken"
version = "0.9.2"
version = "0.9.3"
authors = [
"Matt Raffel <[email protected]",
"Stephen Felt <[email protected]",
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
libindy=1.6.2=stable
libindy=1.6.6=stable
2 changes: 1 addition & 1 deletion libsovtoken/build_scripts/ios/mac/shared.functions.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

export LIBINDY_IOS_BUILD_URL="https://repo.sovrin.org/ios/libindy/stable/libindy-core/1.6.5/libindy.tar.gz"
export LIBINDY_IOS_BUILD_URL="https://repo.sovrin.org/ios/libindy/stable/libindy-core/1.6.6/libindy.tar.gz"
export LIBINDY_FILE=$(basename ${LIBINDY_IOS_BUILD_URL})
export LIBINDY_VERSION=$(basename $(dirname ${LIBINDY_IOS_BUILD_URL}))
export BUILD_CACHE=~/.build_libvxc/ioscache
Expand Down

0 comments on commit 6aee883

Please sign in to comment.