Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RC 0.9.6 #187

Merged
merged 1 commit into from
Nov 30, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion devops/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ ifeq ($(SRC_DIR_NAME),sovtoken)
# remove that once sovtoken starts using indy-plenum from stable:
# pypi: indy-plenum
# apt: indy-plenum (stable component)
FPM_P_DEPENDS := indy-plenum(=1.6.53)
FPM_P_DEPENDS := indy-plenum(=1.6.54)
FPM_ARGS := --no-python-dependencies $(FPM_ARGS)
endif

Expand Down
4 changes: 2 additions & 2 deletions devops/build-scripts/xenial/Pool_Party/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ RUN useradd -m -d /home/indy -s /bin/bash -p $(openssl passwd -1 "token") -u $ui
ARG indy_stream=rc

ARG indy_anoncreds_ver=1.0.11
ARG indy_node_ver=1.6.75
ARG indy_node_ver=1.6.79
ARG python3_indy_crypto_ver=0.4.5
ARG indy_crypto_ver=0.4.5
ARG indy_plenum_ver=1.6.53
ARG indy_plenum_ver=1.6.54


ARG sovtoken_pkg_name=sovtoken_0.9.4_amd64.deb
Expand Down
4 changes: 2 additions & 2 deletions devops/denv/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ RUN useradd -m -d /home/indy -s /bin/bash -p $(openssl passwd -1 "token") -u 100
WORKDIR /home/indy

# indy-node along with supervisor
ENV INDY_NODE_VERSION ${INDY_NODE_VERSION:-1.6.75}
ARG indy_plenum_ver=1.6.53
ENV INDY_NODE_VERSION ${INDY_NODE_VERSION:-1.6.79}
ARG indy_plenum_ver=1.6.54
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 68DB5E88
RUN echo "deb https://repo.sovrin.org/deb xenial rc" >> /etc/apt/sources.list \
&& apt-get update && apt-get install -y \
Expand Down
4 changes: 2 additions & 2 deletions devops/vagrant/desktop/scripts/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ echo "deb https://repo.sovrin.org/deb xenial rc" >> /etc/apt/sources.list \
sudo apt-get update && apt-get install -y \
supervisor \
python3-indy-crypto=0.4.5 \
indy-plenum=1.6.53 \
indy-node=1.6.75 \
indy-plenum=1.6.54 \
indy-node=1.6.79 \
&& rm -rf /var/lib/apt/lists/*


Expand Down
2 changes: 1 addition & 1 deletion sovtoken/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
'*.css', '*.ico', '*.png', 'LICENSE', 'LEGAL', 'sovtoken']},
include_package_data=True,

install_requires=['indy-plenum==1.6.53'],
install_requires=['indy-plenum==1.6.54'],
setup_requires=['pytest-runner'],
extras_require={
'test': tests_require,
Expand Down
2 changes: 1 addition & 1 deletion sovtoken/sovtoken/__metadata__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# TODO: Update the field values below where needed
__title__ = 'sovtoken'
__version_info__ = (0, 9, 5)
__version_info__ = (0, 9, 6)
__version__ = '.'.join(map(str, __version_info__))
__description__ = 'Token Plugin For Indy Plenum'
__long_description__ = ''
Expand Down
2 changes: 1 addition & 1 deletion sovtokenfees/sovtokenfees/__metadata__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
__maintainer__ = 'Evernym'
__title__ = 'sovtokenfees'
__url__ = 'https://github.com/evernym/plugin/tree/master/sovtokenfees'
__version_info__ = (0, 9, 5)
__version_info__ = (0, 9, 6)
__version__ = '.'.join(map(str, __version_info__))

__all__ = ['__title__',
Expand Down