Skip to content

Commit

Permalink
updates dev tag
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin Griffin <[email protected]>
  • Loading branch information
m00sey committed Jul 31, 2024
1 parent ce3c235 commit 3909bd8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

.PHONY: build-keri
build-keri:
@docker buildx build --platform=linux/amd64 -f images/keripy.dockerfile --tag weboftrust/keri:1.2.0-dev11 .
@docker buildx build --platform=linux/arm64 -f images/keripy.dockerfile --tag weboftrust/keri:1.2.0-dev11-arm64 .
@docker buildx build --platform=linux/amd64 -f images/keripy.dockerfile --tag weboftrust/keri:1.2.0-dev12 .
@docker buildx build --platform=linux/arm64 -f images/keripy.dockerfile --tag weboftrust/keri:1.2.0-dev12-arm64 .

.PHONY: build-witness-demo
build-witness-demo:
Expand All @@ -11,8 +11,8 @@ build-witness-demo:

.PHONY: publish-keri
publish-keri:
@docker push weboftrust/keri:1.2.0-dev11
@docker push weboftrust/keri:1.2.0-dev11-arm64
@docker push weboftrust/keri:1.2.0-dev12
@docker push weboftrust/keri:1.2.0-dev12-arm64

.PHONY: publish-keri-witness-demo
publish-keri-witness-demo:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
from setuptools import find_packages, setup
setup(
name='keri',
version='1.2.0-dev11', # also change in src/keri/__init__.py
version='1.2.0-dev12', # also change in src/keri/__init__.py
license='Apache Software License 2.0',
description='Key Event Receipt Infrastructure',
long_description="KERI Decentralized Key Management Infrastructure",
Expand Down
2 changes: 1 addition & 1 deletion src/keri/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- encoding: utf-8 -*-

__version__ = '1.2.0-dev11' # also change in setup.py
__version__ = '1.2.0-dev12' # also change in setup.py


0 comments on commit 3909bd8

Please sign in to comment.