diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f2f0bafce4..219b08f710b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## v0.200.0, 21 July 2022 + +- [Python] Cache client-side timeouts when a remote host is unreachable [#5374](https://github.com/dependabot/dependabot-core/pull/5374) +- Pip: Do not raise PathDependenciesNotReachable for missing setup.py [#5392](https://github.com/dependabot/dependabot-core/pull/5392) + ## v0.199.0, 19 July 2022 - Stop skipping requirements with `original_link` [#5385](https://github.com/dependabot/dependabot-core/pull/5385) diff --git a/common/lib/dependabot/version.rb b/common/lib/dependabot/version.rb index 230638e1b4a..1974c8d3b03 100644 --- a/common/lib/dependabot/version.rb +++ b/common/lib/dependabot/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Dependabot - VERSION = "0.199.0" + VERSION = "0.200.0" end