diff --git a/README.md b/README.md index ea3bd27..271512e 100644 --- a/README.md +++ b/README.md @@ -237,6 +237,6 @@ keycloak_admin.assign_client_role(client_id=client_id, user_id=user_id, role_id= idps = keycloak_admin.get_idps() # Create a new Realm -keycloak_admin.create_realm(payload={"realm": "demo", skip_exists=False) +keycloak_admin.create_realm(payload={"realm": "demo"}, skip_exists=False) ``` diff --git a/docs/source/conf.py b/docs/source/conf.py index 0b68d4e..9a9d01b 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -60,9 +60,9 @@ author = 'Marcos Pereira' # built documents. # # The short X.Y version. -version = '0.17.1' +version = '0.17.2' # The full version, including alpha/beta/rc tags. -release = '0.17.1' +release = '0.17.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index b350392..321773a 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ with open("README.md", "r") as fh: setup( name='python-keycloak', - version='0.17.1', + version='0.17.2', url='https://bitbucket.org/agriness/python-keycloak', license='The MIT License', author='Marcos Pereira',