Skip to content

Commit 9870fe9

Browse files
committed
Merge branch 'release/v1.1.0'
2 parents a50b44e + 8ff6d0d commit 9870fe9

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Changelog
22
=========
33

4+
v1.1.0 (2023-01-20)
5+
-------------------
6+
47
* Added support for checking availability for a spot instance
58
* Updated two github actions to run on fixed version of ubuntu because the latest one is missing python 3.6
69
* Added more version of python to be used on two github actions

datacrunch/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = '1.0.10'
1+
VERSION = '1.1.0'

datacrunch/instances/instances.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ def get_by_id(self, id: str) -> Instance:
321321
id=instance_dict['id'],
322322
instance_type=instance_dict['instance_type'],
323323
image=instance_dict['image'],
324-
price_per_hour=instance_dict['price_per_hour'],
324+
price_per_hour=instance_dict['price_per_hour'] if 'price_per_hour' in instance_dict else None,
325325
location=instance_dict['location'],
326326
hostname=instance_dict['hostname'],
327327
description=instance_dict['description'],

0 commit comments

Comments
 (0)