diff --git a/docker/docker-compose-example.yml b/docker/docker-compose-example.yml index a03d72804..37f19d50c 100644 --- a/docker/docker-compose-example.yml +++ b/docker/docker-compose-example.yml @@ -48,7 +48,7 @@ services: - OPAL_INLINE_OPA_LOG_FORMAT=http ports: # exposes opal client on the host machine, you can access the client at: http://localhost:7000 - - "7000:7000" + - "7766:7000" # exposes the OPA agent (being run by OPAL) on the host machine # you can access the OPA api that you know and love at: http://localhost:8181 # OPA api docs are at: https://www.openpolicyagent.org/docs/latest/rest-api/ diff --git a/packages/__packaging__.py b/packages/__packaging__.py index bc1087240..d6e7b5fea 100644 --- a/packages/__packaging__.py +++ b/packages/__packaging__.py @@ -8,7 +8,7 @@ """ import os -VERSION = (0, 4, 0) +VERSION = (0, 5, 0) VERSION_STRING = ".".join(map(str, VERSION)) __version__ = VERSION_STRING