File tree 6 files changed +11
-4
lines changed
6 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 1.5.1] - 2021-03-02
9
+
10
+ ### Fixed
11
+
12
+ - Fixed an ` AttributeError ` that was thrown when Projects with Sustainable Development Goals were retrieved.
13
+
8
14
## [ 1.5.0] - 2021-03-01
9
15
10
16
### Changed
Original file line number Diff line number Diff line change 15
15
16
16
from __future__ import absolute_import
17
17
18
- __version__ = "1.5.0 "
18
+ __version__ = "1.5.1 "
19
19
20
20
# import ApiClient
21
21
from patch_api .api_client import ApiClient
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ def __init__(
91
91
self .default_headers [header_name ] = header_value
92
92
self .cookie = cookie
93
93
# Set default User-Agent.
94
- self .user_agent = "OpenAPI-Generator/1.5.0 /python"
94
+ self .user_agent = "OpenAPI-Generator/1.5.1 /python"
95
95
96
96
def __del__ (self ):
97
97
if self ._pool :
Original file line number Diff line number Diff line change @@ -341,7 +341,7 @@ def to_debug_report(self):
341
341
"OS: {env}\n "
342
342
"Python Version: {pyversion}\n "
343
343
"Version of the API: v1\n "
344
- "SDK Package Version: 1.5.0 " .format (env = sys .platform , pyversion = sys .version )
344
+ "SDK Package Version: 1.5.1 " .format (env = sys .platform , pyversion = sys .version )
345
345
)
346
346
347
347
def get_host_settings (self ):
Original file line number Diff line number Diff line change 32
32
from patch_api .models .project_list_response import ProjectListResponse
33
33
from patch_api .models .project_response import ProjectResponse
34
34
from patch_api .models .standard import Standard
35
+ from patch_api .models .sdg import Sdg
Original file line number Diff line number Diff line change 12
12
from setuptools import setup , find_packages # noqa: H301
13
13
14
14
NAME = "patch-api"
15
- VERSION = "1.5.0 "
15
+ VERSION = "1.5.1 "
16
16
# To install the library, run the following
17
17
#
18
18
# python setup.py install
You can’t perform that action at this time.
0 commit comments