From 7f243c193b79ba450d3da087553c99f9fb2aab2f Mon Sep 17 00:00:00 2001 From: Tora Kozic Date: Fri, 22 Oct 2021 10:17:53 -0500 Subject: [PATCH 1/3] 1.11.0 release prep; require latest version of py42 --- CHANGELOG.md | 3 ++- setup.py | 2 +- src/code42cli/__version__.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c9d55ae..3478d2ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,13 +8,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 The intended audience of this file is for py42 consumers -- as such, changes that don't affect how a consumer would use the library (e.g. adding unit tests, updating documentation, etc) are not captured here. -## Unreleased +## 1.11.0 - 2021-10-22 ### Fixed - Incorrect column title on `code42 trusted-activities bulk create` command help text. - `code42 devices list` will now process `--exclude-most-recently-connected` prior to `--last-connected-before` instead of after. - The minimum required version of Python for code42cli is now correctly set as 3.6.2. +- The minimum required version of py42 for code42cli is now 1.19.2. ### Added diff --git a/setup.py b/setup.py index 083a40d4..cde7e118 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ "keyrings.alt==3.2.0", "ipython==7.16.1", "pandas>=1.1.3", - "py42>=1.19.1", + "py42>=1.19.2", ], extras_require={ "dev": [ diff --git a/src/code42cli/__version__.py b/src/code42cli/__version__.py index fcfdf383..f84c53b0 100644 --- a/src/code42cli/__version__.py +++ b/src/code42cli/__version__.py @@ -1 +1 @@ -__version__ = "1.10.0" +__version__ = "1.11.0" From 0cc16b23e5a5a33f740a97fc3f5bb764a379663d Mon Sep 17 00:00:00 2001 From: Tora Kozic Date: Fri, 22 Oct 2021 10:30:59 -0500 Subject: [PATCH 2/3] comment out mock-server build actions --- .github/workflows/build.yml | 52 ++++++++++++++++++------------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0d381040..f0bb6f2a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,29 +32,29 @@ jobs: uses: codecov/codecov-action@v1.0.7 with: file: code42cli/coverage.xml - - name: Checkout mock servers - uses: actions/checkout@v2 - with: - repository: code42/code42-mock-servers - path: code42-mock-servers - - name: Add mock servers host addresses - run: | - sudo tee -a /etc/hosts < Date: Fri, 22 Oct 2021 10:32:00 -0500 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3478d2ff..bb044e0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,7 +15,6 @@ how a consumer would use the library (e.g. adding unit tests, updating documenta - Incorrect column title on `code42 trusted-activities bulk create` command help text. - `code42 devices list` will now process `--exclude-most-recently-connected` prior to `--last-connected-before` instead of after. - The minimum required version of Python for code42cli is now correctly set as 3.6.2. -- The minimum required version of py42 for code42cli is now 1.19.2. ### Added