Skip to content

Commit 4833179

Browse files
authored
Merge pull request #136 from britive/1.7.0rc2
v1.7.0rc2 develop
2 parents 3f8293d + 8e82508 commit 4833179

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
* As of v1.4.0 release candidates will be published in an effort to get new features out faster while still allowing time for full QA testing before moving the release candidate to a full release.
44

5+
## v1.7.0rc2 [2024-01-19]
6+
#### What's New
7+
* None
8+
9+
#### Enhancements
10+
* None
11+
#### Bug Fixes
12+
* Remove the banner logic as the banner api is not yet available in production
13+
14+
#### Dependencies
15+
* None
16+
17+
#### Other
18+
* None
19+
20+
521
## v1.7.0rc1 [2024-01-19]
622
#### What's New
723
* Display system announcement/banner if one is present for the tenant

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = pybritive
3-
version = 1.7.0rc1
3+
version = 1.7.0rc2
44
author = Britive Inc.
55
author_email = support@britive.com
66
description = A pure Python CLI for Britive

src/pybritive/britive_cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,8 @@ def login(self, explicit: bool = False, browser: str = None):
169169
if explicit and should_get_profiles:
170170
self._set_available_profiles() # will handle calling cache_profiles() and construct_kube_config()
171171

172-
# handle printing the banner
173-
self._display_banner()
172+
# handle printing the banner - commenting out until the banner api is released into production
173+
# self._display_banner()
174174

175175
def _display_banner(self):
176176
if self.silent:

0 commit comments

Comments
 (0)