Skip to content

Commit ddd9e1d

Browse files
atanasiuk-hubspotGitHub Enterprise
authored and
GitHub Enterprise
committed
Merge pull request #140 from HubSpot/sdk-v
Bump version to 2.1.0
2 parents 3fd2a8d + 64cec87 commit ddd9e1d

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

Diff for: CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,17 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

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
919

1020
## [2.0.0](https://github.com/HubSpot/hubspot-api-python/compare/v1.2.0...v2.0.0) - 2020-06-16
1121

Diff for: VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.0
1+
2.1.0

Diff for: setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
"""
1111

1212

13-
import os
13+
from os.path import dirname, abspath
1414
from setuptools import setup, find_packages # noqa: H301
1515

1616

1717
NAME = "hubspot-api-client"
1818

19-
VERSION_FILE_PATH = os.path.dirname(os.path.abspath(__file__)) + "/VERSION"
19+
VERSION_FILE_PATH = dirname(abspath(__file__)) + "/VERSION"
2020
with open(VERSION_FILE_PATH, "r", encoding="utf-8") as f:
2121
VERSION = f.readline().strip()
2222

0 commit comments

Comments
 (0)