diff --git a/CHANGELOG.md b/CHANGELOG.md index 1add909..9400136 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,12 +5,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [2.0.2-alpha] - unreleased - -This is an alpha version! The changes listed here are not final. - +## [2.0.2] - 2023-11-21 ### Changed -- Code Modernization: Replace usage of strpos() with str_contains() +- Replaced usage of strpos() with str_contains(). [#34137] ## [2.0.1] - 2023-11-21 @@ -932,7 +929,7 @@ This is an alpha version! The changes listed here are not final. - Separate the connection library into its own package. -[2.0.2-alpha]: https://github.com/Automattic/jetpack-connection/compare/v2.0.1...v2.0.2-alpha +[2.0.2]: https://github.com/Automattic/jetpack-connection/compare/v2.0.1...v2.0.2 [2.0.1]: https://github.com/Automattic/jetpack-connection/compare/v2.0.0...v2.0.1 [2.0.0]: https://github.com/Automattic/jetpack-connection/compare/v1.60.1...v2.0.0 [1.60.1]: https://github.com/Automattic/jetpack-connection/compare/v1.60.0...v1.60.1 diff --git a/composer.json b/composer.json index c36f1c7..fd97dd6 100644 --- a/composer.json +++ b/composer.json @@ -9,14 +9,14 @@ "automattic/jetpack-admin-ui": "^0.3.1-alpha", "automattic/jetpack-constants": "^2.0.0", "automattic/jetpack-roles": "^2.0.0", - "automattic/jetpack-status": "^2.0.1-alpha", + "automattic/jetpack-status": "^2.0.1", "automattic/jetpack-redirect": "^2.0.0" }, "require-dev": { "automattic/wordbless": "@dev", "yoast/phpunit-polyfills": "1.1.0", "brain/monkey": "2.6.1", - "automattic/jetpack-changelogger": "^4.0.2-alpha" + "automattic/jetpack-changelogger": "^4.0.3-alpha" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." diff --git a/src/class-package-version.php b/src/class-package-version.php index e5fb202..2e37f4d 100644 --- a/src/class-package-version.php +++ b/src/class-package-version.php @@ -12,7 +12,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '2.0.2-alpha'; + const PACKAGE_VERSION = '2.0.2'; const PACKAGE_SLUG = 'connection';