File tree Expand file tree Collapse file tree 3 files changed +14
-2
lines changed
Expand file tree Collapse file tree 3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 1+ # CHANGELOG
2+
3+ The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ )
4+ and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
5+
6+ ## [ 2.0.0] - 2019-08-10
7+ ### Added
8+ - New CHANGELOG.md added.
9+
10+ ### Changes
11+ - The ` get_quote() ` method now utilizes
12+ [ v2 of the quotes endpoint] ( https://connect.vacasait.com/#operation/get-quote-v2 ) .
Original file line number Diff line number Diff line change 22
33setup (
44 name = 'VacasaConnect' ,
5- version = '1 .0.15 ' ,
5+ version = '2 .0.0 ' ,
66 description = 'A Python 3.6+ SDK for the connect.vacasa.com API.' ,
77 packages = ['vacasa.connect' ],
88 url = 'https://github.com/Vacasa/python-vacasa-connect-sdk' ,
Original file line number Diff line number Diff line change @@ -648,7 +648,7 @@ def get_quote(self,
648648 Returns:
649649 The response object as a dict
650650 """
651- url = f"{ self .endpoint } /v1 /quotes"
651+ url = f"{ self .endpoint } /v2 /quotes"
652652 headers = self ._headers (language , currency )
653653
654654 params = {
You can’t perform that action at this time.
0 commit comments