File tree 3 files changed +14
-4
lines changed
3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,17 @@ 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
- ## [ Unreleased] ( https://github.com/HubSpot/hubspot-api-python/compare/v2.0.0...HEAD )
8
+ ## [ Unreleased] ( https://github.com/HubSpot/hubspot-api-python/compare/v2.1.0...HEAD )
9
+
10
+ ## [ 2.1.0] ( https://github.com/HubSpot/hubspot-api-python/compare/v2.0.0...v2.1.0 ) - 2020-06-23
11
+
12
+ ### Added
13
+
14
+ - OAuth to ` cms.audit_logs ` API client
15
+
16
+ ### Fixed
17
+
18
+ - Parsing response in ` cms.site_search.default_api.get_by_id ` method
9
19
10
20
## [ 2.0.0] ( https://github.com/HubSpot/hubspot-api-python/compare/v1.2.0...v2.0.0 ) - 2020-06-16
11
21
Original file line number Diff line number Diff line change 1
- 2.0 .0
1
+ 2.1 .0
Original file line number Diff line number Diff line change 10
10
"""
11
11
12
12
13
- import os
13
+ from os . path import dirname , abspath
14
14
from setuptools import setup , find_packages # noqa: H301
15
15
16
16
17
17
NAME = "hubspot-api-client"
18
18
19
- VERSION_FILE_PATH = os . path . dirname (os . path . abspath (__file__ )) + "/VERSION"
19
+ VERSION_FILE_PATH = dirname (abspath (__file__ )) + "/VERSION"
20
20
with open (VERSION_FILE_PATH , "r" , encoding = "utf-8" ) as f :
21
21
VERSION = f .readline ().strip ()
22
22
You can’t perform that action at this time.
0 commit comments