From 83c72582b447aab552bd5757abce34e6b6309332 Mon Sep 17 00:00:00 2001 From: Nathan Nowack Date: Thu, 8 Feb 2024 13:44:59 -0600 Subject: [PATCH] remove changelog and update PR template --- .github/PULL_REQUEST_TEMPLATE.md | 1 - CHANGELOG.md | 135 ------------------------------- 2 files changed, 136 deletions(-) delete mode 100644 CHANGELOG.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 5c3608e..c611552 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -25,4 +25,3 @@ Any relevant screenshots - Run `pre-commit install && pre-commit run --all` locally for formatting and linting. - [ ] Includes screenshots of documentation updates. - Run `mkdocs serve` view documentation locally. -- [ ] Summarizes PR's changes in [CHANGELOG.md](https://github.com/PrefectHQ/prefect-ray/blob/main/CHANGELOG.md) diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 4e41d90..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,135 +0,0 @@ -# Changelog - -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). - -## Unreleased - -### Added - -### Changed - -### Deprecated - -### Removed - -### Fixed - -### Security - -## 0.3.3 - -Released on December 6th, 2023. - -### Added - -- Use perfect task name as Ray remote function name - [#103](https://github.com/PrefectHQ/prefect-ray/pull/103) - -## 0.2.6 - -Released on November 29th, 2023. - -### Added - -- Support for Python 3.10 - [#105](https://github.com/PrefectHQ/prefect-ray/pull/105) - -## 0.2.5 - -Released on April 27th, 2023. - -### Added - -- `RayTaskRunner.duplicate` to support using the `RayTaskRunner` in concurrent flow runs - [#83](https://github.com/PrefectHQ/prefect-ray/pull/83) - -### Fixed - -- Wait for upstream object refs before starting tasks to avoid prematurely spinning up Ray workers - [#81](https://github.com/PrefectHQ/prefect-ray/pull/81) - -## 0.2.4 - -Released on February 21st, 2023. - -### Fixed - -- Updated `prefect.orion` imports to `prefect.server` - [#72](https://github.com/PrefectHQ/prefect-ray/pull/72) - -## 0.2.3 - -Released on Februrary 15th, 2023 - -### Fixed - -- Reduce pressure on networking by resolving Ray/Prefect futures concurrently and decentralized right before executing the Prefect Task. - [#69](https://github.com/PrefectHQ/prefect-ray/pull/69) - -## 0.2.2 - -Released on December 1st, 2022 - -### Fixed - -- Updated `RayTaskRunner` to handle task exceptions correctly in Prefect >= 2.6.0 - [#60](https://github.com/PrefectHQ/prefect-ray/pull/60) - -## 0.2.1 - -Released November 1st, 2022 - -### Added - -- `remote_options` context manager for managing Ray remote options for a task - [#54](https://github.com/PrefectHQ/prefect-ray/pull/54) - -### Fixed - -- `remote_options` errors, stemmed from being called at an improper location - [#56](https://github.com/PrefectHQ/prefect-ray/pull/56) - -## 0.2.0 - -Released September 8th, 2022 - -### Added -- `pickle5` requirement for Python < 3.8 users - [#30](https://github.com/PrefectHQ/prefect-ray/pull/30). - -### Fixed -- Updated `RayTaskRunner` to be compatible with the updated `TaskRunner` interface in the Prefect Core library (v2.3.0) - [#35](https://github.com/PrefectHQ/prefect-ray/pull/35) - -## 0.1.4 - -Released on August 2nd, 2022. - -### Added -- `pickle5` requirement for Python < 3.8 users - [#30](https://github.com/PrefectHQ/prefect-ray/pull/30). - -## 0.1.3 - -Released on July 26th, 2022. - -### Changed - -- Dropping x86_64 requirement so ray can be automatically installed - [#29](https://github.com/PrefectHQ/prefect-ray/pull/29). -- Examples to better exemplify parallelism - [#29](https://github.com/PrefectHQ/prefect-ray/pull/29). - -## 0.1.2 - -Released on July 20th, 2022. - -### Changed - -- Updated tests to be compatible with core Prefect library (v2.0b9) and bumped required version - [#20](https://github.com/PrefectHQ/prefect-ray/pull/20) - -## 0.1.1 - -Released on July 8th, 2022. - -### Changed - -- Updated `RayTaskRunner` to be compatible with core Prefect library (v2.08b) - [#18](https://github.com/PrefectHQ/prefect-ray/pull/18) - -## 0.1.0 - -Released on June 7th, 2022. - -### Added - -- Migrated `RayTaskRunner` from core Prefect library - [#7](https://github.com/PrefectHQ/prefect-ray/pull/7) -- Expanded documentation and corrections to docstrings [#9](https://github.com/PrefectHQ/prefect-ray/pull/9)