Skip to content

Commit 533da56

Browse files
authored
Merge pull request #115 from 2ndWatch/v0.2.7
bump to 0.2.7. add blueprint updates.
2 parents 8c1ce05 + 2224f95 commit 533da56

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ SHA1 := $$(git log -1 --pretty=%h)
88
CURRENT_BRANCH := $$(git symbolic-ref -q --short HEAD)
99
LATEST_TAG := ${REPO_NAME}:latest
1010
GIT_TAG := ${REPO_NAME}:${SHA1}
11-
VERSION := v0.2.6
11+
VERSION := v0.2.7
1212

1313
info: ## Show information about the current git state.
1414
@echo "Github Project: https://github.com/${REPO_NAME}\nCurrent Branch: ${CURRENT_BRANCH}\nSHA1: ${SHA1}\n"

cloudendure/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.2.6"
1+
__version__ = "0.2.7"

cloudendure/cloudendure.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import datetime
88
import json
99
import os
10+
import pprint
1011
from typing import Any, Dict, List
1112

1213
import boto3
@@ -502,6 +503,10 @@ def update_blueprint(self) -> bool:
502503
]
503504

504505
blueprint["publicIPAction"] = self.config.active_config.get("public_ip", "DONT_ALLOCATE")
506+
507+
print(f"Updated blueprint for {_machine_name}")
508+
pprint.pprint(blueprint)
509+
505510
if self.dry_run:
506511
print("This is a dry run! Not updating blueprints!")
507512
return True

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "cloudendure"
3-
version = "0.2.6"
3+
version = "0.2.7"
44
description = "Python wrapper and CLI for CloudEndure"
55
authors = ["Mark Beacom <[email protected]>", "Tom Warnock <[email protected]>"]
66
maintainers = ["Evan Lucchesi <[email protected]>", "Nick Selpa <[email protected]>"]

0 commit comments

Comments
 (0)