diff --git a/CHANGELOG.md b/CHANGELOG.md index d5369176..17627ca1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,12 @@ 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. +## 1.18.1 - - 2024-04-25 + +### Changed + +- Increased HTTP client timeout from 1 minute to 3 minutes. + ## 1.18.0 - 2023-11-30 ### Added diff --git a/setup.py b/setup.py index 72965d45..f836d648 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ setup( name="code42cli", version=about["__version__"], - url="https://github.com/code42/py42", + url="https://github.com/code42/code42cli", project_urls={ "Issue Tracker": "https://github.com/code42/code42cli/issues", "Documentation": "https://clidocs.code42.com/", @@ -40,7 +40,7 @@ "ipython>=7.16.3;python_version<'3.8'", "ipython>=8.10.0;python_version>='3.8'", "pandas>=1.1.3", - "py42>=1.26.0", + "py42>=1.27.1", "setuptools>=66.0.0", ], extras_require={ diff --git a/src/code42cli/__version__.py b/src/code42cli/__version__.py index 6cea18d8..4a7bff54 100644 --- a/src/code42cli/__version__.py +++ b/src/code42cli/__version__.py @@ -1 +1 @@ -__version__ = "1.18.0" +__version__ = "1.18.1"