Skip to content

Commit 384b7b0

Browse files
authored
version 1.14.0 (#369)
* bump version & changelog * style miss * add python 3.9 and 3.10 to tox * add python 3.9 and 3.10 to github builds * remove 3.10 for now
1 parent a02659e commit 384b7b0

File tree

5 files changed

+22
-9
lines changed

5 files changed

+22
-9
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python: [3.6, 3.7, 3.8]
17+
python: [3.6, 3.7, 3.8, 3.9]
1818

1919
steps:
2020
- uses: actions/checkout@v2

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The intended audience of this file is for py42 consumers -- as such, changes tha
99
how a consumer would use the library (e.g. adding unit tests, updating documentation, etc) are not captured here.
1010

1111

12-
## Unreleased
12+
## 1.14.0 - 2022-05-18
1313

1414
### Added
1515

src/code42cli/__version__.py

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

src/code42cli/cmds/departing_employee.py

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,19 @@ def _get_filter_choices():
3737
)
3838

3939

40-
@click.group(cls=OrderedGroup, help=f"{DEPRECATION_TEXT}\n\nAdd and remove employees from the Departing Employees detection list.")
40+
@click.group(
41+
cls=OrderedGroup,
42+
help=f"{DEPRECATION_TEXT}\n\nAdd and remove employees from the Departing Employees detection list.",
43+
)
4144
@sdk_options(hidden=True)
4245
def departing_employee(state):
4346
pass
4447

4548

46-
@departing_employee.command("list", help=f"{DEPRECATION_TEXT}\n\nLists the users on the Departing Employees list.")
49+
@departing_employee.command(
50+
"list",
51+
help=f"{DEPRECATION_TEXT}\n\nLists the users on the Departing Employees list.",
52+
)
4753
@sdk_options()
4854
@format_option
4955
@filter_option
@@ -57,7 +63,9 @@ def _list(state, format, filter):
5763
)
5864

5965

60-
@departing_employee.command(help=f"{DEPRECATION_TEXT}\n\nAdd a user to the Departing Employees detection list.")
66+
@departing_employee.command(
67+
help=f"{DEPRECATION_TEXT}\n\nAdd a user to the Departing Employees detection list."
68+
)
6169
@username_arg
6270
@click.option(
6371
"--departure-date",
@@ -73,15 +81,20 @@ def add(state, username, cloud_alias, departure_date, notes):
7381
_add_departing_employee(state.sdk, username, cloud_alias, departure_date, notes)
7482

7583

76-
@departing_employee.command(help=f"{DEPRECATION_TEXT}\n\nRemove a user from the Departing Employees detection list.")
84+
@departing_employee.command(
85+
help=f"{DEPRECATION_TEXT}\n\nRemove a user from the Departing Employees detection list."
86+
)
7787
@username_arg
7888
@sdk_options()
7989
def remove(state, username):
8090
deprecation_warning(DEPRECATION_TEXT)
8191
_remove_departing_employee(state.sdk, username)
8292

8393

84-
@departing_employee.group(cls=OrderedGroup, help=f"{DEPRECATION_TEXT}\n\nTools for executing bulk departing employee actions.")
94+
@departing_employee.group(
95+
cls=OrderedGroup,
96+
help=f"{DEPRECATION_TEXT}\n\nTools for executing bulk departing employee actions.",
97+
)
8598
@sdk_options(hidden=True)
8699
def bulk(state):
87100
pass

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{38,37,36}
3+
py{39,38,37,36}
44
docs
55
style
66
skip_missing_interpreters = true

0 commit comments

Comments
 (0)