Skip to content

Commit 81f6838

Browse files
committed
bump version
1 parent d96fa3e commit 81f6838

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

README.rst

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,22 @@
11
GitLab Auth for Sentry
22
======================
3-
v0.0.2
3+
v0.1.0
44

55
An SSO provider for Sentry which enables GitLab Login
66

7+
Changes made for Gitlab 9.x
8+
----------
9+
Following configuration has been changed
10+
11+
.. code-block:: python
12+
13+
# You can specify scope to "api" in Gitlab's OAuth Application page
14+
# If you failed to do that, set GITLAB_AUTH_SCOPE = "read_user"
15+
GITLAB_AUTH_SCOPE = "api"
16+
# If your gitlab does not support v4 api, set GITLAB_API_VERSION = 3
17+
GITLAB_API_VERSION = 4
18+
19+
720
Install
821
-------
922

@@ -31,11 +44,12 @@ Once done, grab your API keys and drop them in your ``sentry.conf.py:
3144
GITLAB_BASE_DOMAIN = "git.example.com"
3245
3346
34-
Optionally you may also specify the api version and scheme:
47+
Optionally you may also specify the api version, scheme, and scope:
3548
3649
.. code-block:: python
3750
38-
GITLAB_API_VERSION = 3
51+
GITLAB_API_VERSION = 4
52+
GITLAB_AUTH_SCOPE = "api"
3953
GITLAB_HTTP_SCHEME = "https"
4054
4155

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
setup(
2121
name='sentry-auth-gitlab',
22-
version='0.0.3',
22+
version='0.1.0',
2323
author='Sky Lothar',
2424
author_email='[email protected]@gmail.com',
2525
url='https://github.com/skylothar',

0 commit comments

Comments
 (0)