Skip to content

Commit

Permalink
Merge pull request #192 from anikitinDSR/rc-0.9.9
Browse files Browse the repository at this point in the history
[RC-0.9.9] bump plenum and python3-indy versions
  • Loading branch information
ashcherbakov authored Feb 6, 2019
2 parents d3a2350 + d60f5ea commit 864e42f
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
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.57)
FPM_P_DEPENDS := indy-plenum(=1.6.58)
FPM_ARGS := --no-python-dependencies $(FPM_ARGS)
endif

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 @@ -43,4 +43,4 @@ RUN if [ "$u_id" != "0" ]; then \
USER $u_id

# TODO CMD ENTRYPOINT ...
ENV CI_ENV_VERSION=0.9.0
ENV CI_ENV_VERSION=0.10.0
2 changes: 1 addition & 1 deletion devops/ext/docker/base/xenial/Dockerfile.0.2.0
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
ruby \
ruby-dev \
rubygems \
&& gem install --no-ri --no-rdoc fpm -v $FPM_VERSION \
&& gem install --no-ri --no-rdoc rake fpm:$FPM_VERSION \
&& rm -rf /var/lib/apt/lists/*

# TODO CMD ENTRYPOINT ...
Expand Down
4 changes: 2 additions & 2 deletions sovtoken/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
with open(os.path.join(here, 'sovtoken', '__metadata__.py'), 'r') as f:
exec(f.read(), metadata)

tests_require = ['pytest', 'pytest-xdist', 'mock', 'python3-indy==1.6.7']
tests_require = ['pytest', 'pytest-xdist', 'mock', 'python3-indy==1.6.8']

setup(
name=metadata['__title__'],
Expand All @@ -38,7 +38,7 @@
'*.css', '*.ico', '*.png', 'LICENSE', 'LEGAL', 'sovtoken']},
include_package_data=True,

install_requires=['indy-plenum==1.6.57'],
install_requires=['indy-plenum==1.6.58'],
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, 8)
__version_info__ = (0, 9, 9)
__version__ = '.'.join(map(str, __version_info__))
__description__ = 'Token Plugin For Indy Plenum'
__long_description__ = ''
Expand Down
2 changes: 1 addition & 1 deletion sovtokenfees/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
with open(os.path.join(here, 'sovtokenfees', '__metadata__.py'), 'r') as f:
exec(f.read(), metadata)

tests_require = ['pytest', 'pytest-xdist', 'python3-indy==1.6.7']
tests_require = ['pytest', 'pytest-xdist', 'python3-indy==1.6.8']

setup(

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, 8)
__version_info__ = (0, 9, 9)
__version__ = '.'.join(map(str, __version_info__))

__all__ = ['__title__',
Expand Down

0 comments on commit 864e42f

Please sign in to comment.