Skip to content

Commit edf55fe

Browse files
authored
Merge pull request Clever#52 from Clever/v3.0.1
V3.0.1
2 parents d452489 + 990dcdf commit edf55fe

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 3.0.1 (2018-05-15)
2+
* Change students home_language 'Telegu' to 'Telugu'
3+
14
## 3.0.0 (2018-01-02)
25
* Use API v2.0, generated by swagger-codegen. This is a major, breaking change for the library.
36

clever/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,5 +244,5 @@ def to_debug_report(self):
244244
"OS: {env}\n"\
245245
"Python Version: {pyversion}\n"\
246246
"Version of the API: 2.0.0\n"\
247-
"SDK Package Version: 3.0.0".\
247+
"SDK Package Version: 3.0.1".\
248248
format(env=sys.platform, pyversion=sys.version)

clever/models/student.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ def home_language(self, home_language):
416416
:param home_language: The home_language of this Student.
417417
:type: str
418418
"""
419-
allowed_values = ["English", "Albanian", "Amharic", "Arabic", "Bengali", "Bosnian", "Burmese", "Cantonese", "Chinese", "Dutch", "Farsi", "French", "German", "Hebrew", "Hindi", "Hmong", "Ilocano", "Japanese", "Javanese", "Karen", "Khmer", "Korean", "Laotian", "Latvian", "Malay", "Mandarin", "Nepali", "Oromo", "Polish", "Portuguese", "Punjabi", "Romanian", "Russian", "Samoan", "Serbian", "Somali", "Spanish", "Swahili", "Tagalog", "Tamil", "Telegu", "Thai", "Tigrinya", "Turkish", "Ukrainian", "Urdu", "Vietnamese"]
419+
allowed_values = ["English", "Albanian", "Amharic", "Arabic", "Bengali", "Bosnian", "Burmese", "Cantonese", "Chinese", "Dutch", "Farsi", "French", "German", "Hebrew", "Hindi", "Hmong", "Ilocano", "Japanese", "Javanese", "Karen", "Khmer", "Korean", "Laotian", "Latvian", "Malay", "Mandarin", "Nepali", "Oromo", "Polish", "Portuguese", "Punjabi", "Romanian", "Russian", "Samoan", "Serbian", "Somali", "Spanish", "Swahili", "Tagalog", "Tamil", "Telugu", "Thai", "Tigrinya", "Turkish", "Ukrainian", "Urdu", "Vietnamese"]
420420
if home_language not in allowed_values:
421421
raise ValueError(
422422
"Invalid value for `home_language` ({0}), must be one of {1}"

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The Clever API
44
This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
55

66
- API version: 2.0.0
7-
- Package version: 3.0.0
7+
- Package version: 3.0.1
88
- Build package: io.swagger.codegen.languages.PythonClientCodegen
99

1010
## Documentation for API Endpoints

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from setuptools import setup, find_packages
1616

1717
NAME = "clever-python"
18-
VERSION = "3.0.0"
18+
VERSION = "3.0.1"
1919
# To install the library, run the following
2020
#
2121
# python setup.py install

0 commit comments

Comments
 (0)