Skip to content

Commit

Permalink
Bump: v0.2.4
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Northey <[email protected]>
  • Loading branch information
phlax committed Dec 12, 2020
1 parent d87346e commit 5063665
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 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.3-alpha
export PLAYGROUND_VERSION=0.2.4-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.3-alpha
phlax/envoy-playground:0.2.4-alpha
```

You can stop the playground with.
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.3-alpha
phlax/envoy-playground:0.2.4-alpha
2 changes: 1 addition & 1 deletion playground/control/api/endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def __init__(self, services: Union[tuple, None] = None):
def metadata(self):
return dict(
title='Envoy playground',
version='v0.2.3-alpha',
version='v0.2.4-alpha',
repository='https://github.com/envoyproxy/playground',
max_network_connections=MAX_NETWORK_CONNECTIONS,
min_name_length=MIN_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.3',
version='0.2.4',
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_endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def test_api_metadata():
assert _api.metadata == dict(
repository='https://github.com/envoyproxy/playground',
title='Envoy playground',
version='v0.2.3-alpha',
version='v0.2.4-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 5063665

Please sign in to comment.