Skip to content

Commit 0b127c7

Browse files
authored
Release 0-1-1 - development merge (#20)
* Creates a 0.1.1 Release * Small Readme fixes
1 parent 9a3c0fe commit 0b127c7

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8-
## [0.1.0] - 2015-10-2X
8+
## [0.1.1] - 2015-11-15
9+
10+
### Added
11+
- Flask plugin.
12+
- Django plugin.
13+
14+
### Fixed
15+
- Stripping the PKCS5 padding works correctly on Python2 now.
16+
17+
## [0.1.0] - 2015-10-23
918
### Added
1019
- Initial SDK release

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,13 @@ Both example applications utilise the env variables described above, make sure t
6363
`python examples/yoti_example_django/manage.py migrate`
6464
1. Run: `python examples/yoti_example_django/manage.py runserver 0.0.0.0:5000`
6565

66+
67+
### Plugins ###
68+
69+
Plugins for both Django and Flask are in the `plugins/` dir. Their purpose is to make it as easy as possible to use
70+
Yoti SDK with those frameworks. See their respective `README`'s for details.
71+
72+
6673
## Executing tests ##
6774

6875
1. Install dependencies: `pip install -r requirements.txt`

plugins/django_yoti/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ YOTI = {
106106
If *not* authenticated user is trying to access a view with
107107
`@yoti_authenticated` decorator, he/she will be redirected to this view.
108108
Example: `login`<br>
109-
In case you have something like this in your project's `urls.py` file:
109+
In this case you should have something like this in your project's `urls.py` file:
110110
```python
111111
urlpatterns = [
112112
...
@@ -119,7 +119,7 @@ Default value: `yoti_login` (with `/yoti/login/` URL)
119119
* **`YOTI_REDIRECT_TO`**<br>
120120
View name to which user is redirected after successful authentication.<br>
121121
Example: `profile`<br>
122-
In case you have something like this in your project's `urls.py` file:
122+
In this case you should have something like this in your project's `urls.py` file:
123123
```python
124124
urlpatterns = [
125125
...

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
from setuptools import setup, find_packages
33

4-
VERSION = '0.1.0'
4+
VERSION = '0.1.1'
55
long_description = 'This package contains the tools you need to quickly ' \
66
'integrate your Python back-end with Yoti, so that your ' \
77
'users can share their identity details with your ' \

0 commit comments

Comments
 (0)