diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f3bc3cb..d0cd8b71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Optimizely Python SDK Changelog +## 5.2.0 +February 26, 2025 + +Python threads have been named. + +`PollingConfigManager` now has another optional parameter `retries` that will control how many times the SDK will attempt to get the datafile if the connection fails. Previously, the SDK would only try once. Now it defaults to maximum of three attempts. When sending event data, the SDK will attempt to send event data up to three times, where as before it would only attempt once. + ## 5.1.0 November 27th, 2024 diff --git a/optimizely/version.py b/optimizely/version.py index 941e5e68..4f0f20c6 100644 --- a/optimizely/version.py +++ b/optimizely/version.py @@ -11,5 +11,5 @@ # See the License for the specific language governing permissions and # limitations under the License. -version_info = (5, 1, 0) +version_info = (5, 2, 0) __version__ = '.'.join(str(v) for v in version_info)