Skip to content

Commit

Permalink
Bump: v0.2.2
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Northey <[email protected]>
  • Loading branch information
phlax committed Dec 9, 2020
1 parent 3b68287 commit 6386649
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

SHELL := /bin/bash

export PLAYGROUND_VERSION=0.2.1-alpha
export PLAYGROUND_VERSION=0.2.2-alpha

.PHONY: coverage docs site build

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ You can run the playground directly with Docker.
$ docker run -d --rm \
--privileged \
-v /var/run/docker.sock:/var/run/docker.sock \
phlax/envoy-playground:0.2.1-alpha
phlax/envoy-playground:0.2.2-alpha
```

You can stop the playground with.
Expand Down
4 changes: 2 additions & 2 deletions bin/integration-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ echo "Load or pull playground image"
if [[ -e /tmp/docker/playground.tar.gz ]]; then
docker load < /tmp/docker/playground.tar.gz
else
docker pull phlax/envoy-playground:0.2.1-alpha
docker tag phlax/envoy-playground:0.2.1-alpha envoy-playground
docker pull phlax/envoy-playground:0.2.2-alpha
docker tag phlax/envoy-playground:0.2.2-alpha envoy-playground
fi

docker images
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ You can run the playground directly with Docker.
$ docker run -d --rm \
--privileged \
-v /var/run/docker.sock:/var/run/docker.sock \
phlax/envoy-playground:0.2.1-alpha
phlax/envoy-playground:0.2.2-alpha
2 changes: 1 addition & 1 deletion playground/control/api/listener.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def __init__(self, services: Union[tuple, None] = None):
@cached_property
def metadata(self):
return dict(
version='v0.2.1-alpha',
version='v0.2.2-alpha',
max_network_connections=MAX_NETWORK_CONNECTIONS,
min_name_length=MIN_NAME_LENGTH,
max_name_length=MAX_NAME_LENGTH,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
# TODO: Fix classifiers
setup(
name='playground.control',
version='0.2.1',
version='0.2.2',
description='playground.control',
long_description="playground.control",
url='https://github.com/envoyproxy/playground',
Expand Down
2 changes: 1 addition & 1 deletion tests/py/api/test_listener.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def test_api(patch_playground):
def test_api_metadata():
_api = DummyPlaygroundAPI()
assert _api.metadata == dict(
version='v0.2.1-alpha',
version='v0.2.2-alpha',
max_network_connections=MAX_NETWORK_CONNECTIONS,
min_name_length=MIN_NAME_LENGTH,
max_name_length=MAX_NAME_LENGTH,
Expand Down

0 comments on commit 6386649

Please sign in to comment.