From b8fa6a494ea594cf729f2be65ae6d2d615ab3b6a Mon Sep 17 00:00:00 2001 From: MichaelFu512 Date: Tue, 4 Jun 2024 15:54:28 -0700 Subject: [PATCH 1/9] release notes --- docs/source/release_notes.rst | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 3eb0096df6..8f110cc3b7 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -1,6 +1,18 @@ Release Notes ------------- **Future Releases** + * Enhancements + * Fixes + * Changes + * Documentation Changes + * Testing Changes + +.. warning:: + + **Breaking Changes** + + +**v0.84.0 Jun 5, 2024** * Enhancements * Reformatted files with updated black version :pr:`4395` * Fixes From 22b760fb6587516a6599085f87eb790348c13717 Mon Sep 17 00:00:00 2001 From: MichaelFu512 Date: Tue, 4 Jun 2024 15:54:52 -0700 Subject: [PATCH 2/9] init change --- evalml/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evalml/__init__.py b/evalml/__init__.py index 7642eacc81..4e9742080a 100644 --- a/evalml/__init__.py +++ b/evalml/__init__.py @@ -24,4 +24,4 @@ warnings.filterwarnings("ignore", category=FutureWarning) warnings.filterwarnings("ignore", category=DeprecationWarning) -__version__ = "0.83.0" +__version__ = "0.84.0" From e2f39b8f013a1097d04d3c5506193b4f09f194c6 Mon Sep 17 00:00:00 2001 From: MichaelFu512 Date: Wed, 5 Jun 2024 10:36:54 -0700 Subject: [PATCH 3/9] release pypi change --- .github/workflows/release.yaml | 28 +++++++++++++++++----------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 68e357b46f..867428b5f0 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -7,15 +7,21 @@ jobs: pypi: name: PyPI Release runs-on: ubuntu-latest + permissions: + id-token: write steps: - - uses: actions/checkout@v3 - - name: Remove docs before release - run: rm -rf docs/ - - name: PyPI Upload - uses: FeatureLabs/gh-action-pypi-upload@v2 - env: - PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }} - PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }} - TEST_PYPI_USERNAME: ${{ secrets.TEST_PYPI_USERNAME }} - TEST_PYPI_PASSWORD: ${{ secrets.TEST_PYPI_PASSWORD }} - TAG_NAME: ${{ github.event.release.tag_name }} + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + - name: Install deps + run: | + python -m pip install --quiet --upgrade pip + python -m pip install --quiet --upgrade build + python -m pip install --quiet --upgrade setuptools + - name: Remove build artifacts and docs + run: | + rm -rf .eggs/ dist/ build/ docs/ + - name: Build distribution + run: python -m build + - name: Publish package distributions to PyPI + uses: pypa/gh-action-pypi-publish@release/v1 + - name: Run workflow to create feedstock pull req From d495253ad26ff8170ffedbc5316e48cee6a8525d Mon Sep 17 00:00:00 2001 From: MichaelFu512 Date: Wed, 5 Jun 2024 10:46:20 -0700 Subject: [PATCH 4/9] release notes --- docs/source/release_notes.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 8f110cc3b7..e2e5d62123 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -16,6 +16,7 @@ Release Notes * Enhancements * Reformatted files with updated black version :pr:`4395` * Fixes + * Fixed token issues related to pypi release github action failing :pr:`4446` * Changes * Dropped support for Python 3.8 :pr:`4414` * Removed vowpalwabbit :pr:`4427` From 57fbf830c21f9c0f3e0a8752b2957943917cf263 Mon Sep 17 00:00:00 2001 From: MichaelFu512 Date: Wed, 5 Jun 2024 11:38:43 -0700 Subject: [PATCH 5/9] revert the 0.84.0 release --- docs/source/release_notes.rst | 12 ------------ evalml/__init__.py | 2 +- 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index e2e5d62123..af390a4c24 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -1,18 +1,6 @@ Release Notes ------------- **Future Releases** - * Enhancements - * Fixes - * Changes - * Documentation Changes - * Testing Changes - -.. warning:: - - **Breaking Changes** - - -**v0.84.0 Jun 5, 2024** * Enhancements * Reformatted files with updated black version :pr:`4395` * Fixes diff --git a/evalml/__init__.py b/evalml/__init__.py index 4e9742080a..7642eacc81 100644 --- a/evalml/__init__.py +++ b/evalml/__init__.py @@ -24,4 +24,4 @@ warnings.filterwarnings("ignore", category=FutureWarning) warnings.filterwarnings("ignore", category=DeprecationWarning) -__version__ = "0.84.0" +__version__ = "0.83.0" From af45312864f0076c4c68d53d92eed6851be5f985 Mon Sep 17 00:00:00 2001 From: MichaelFu512 Date: Wed, 5 Jun 2024 11:41:54 -0700 Subject: [PATCH 6/9] remove last line --- .github/workflows/release.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 867428b5f0..b4915afb89 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -23,5 +23,4 @@ jobs: - name: Build distribution run: python -m build - name: Publish package distributions to PyPI - uses: pypa/gh-action-pypi-publish@release/v1 - - name: Run workflow to create feedstock pull req + uses: pypa/gh-action-pypi-publish@release/v1 \ No newline at end of file From ead2167e399679a0565c009c7a23b3520e0b9e51 Mon Sep 17 00:00:00 2001 From: MichaelFu512 Date: Wed, 5 Jun 2024 11:43:03 -0700 Subject: [PATCH 7/9] accidently removed new line --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index b4915afb89..5ca2edd95c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -23,4 +23,4 @@ jobs: - name: Build distribution run: python -m build - name: Publish package distributions to PyPI - uses: pypa/gh-action-pypi-publish@release/v1 \ No newline at end of file + uses: pypa/gh-action-pypi-publish@release/v1 From 3b854312b04be13fdb74d75cad4755761d2cf508 Mon Sep 17 00:00:00 2001 From: MichaelFu512 Date: Wed, 5 Jun 2024 13:31:36 -0700 Subject: [PATCH 8/9] force codecov to start again --- evalml/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evalml/__init__.py b/evalml/__init__.py index 7642eacc81..4e9742080a 100644 --- a/evalml/__init__.py +++ b/evalml/__init__.py @@ -24,4 +24,4 @@ warnings.filterwarnings("ignore", category=FutureWarning) warnings.filterwarnings("ignore", category=DeprecationWarning) -__version__ = "0.83.0" +__version__ = "0.84.0" From cf60c664ef216fc7b77166faa66e2ea1db7ba72b Mon Sep 17 00:00:00 2001 From: MichaelFu512 Date: Wed, 5 Jun 2024 13:31:50 -0700 Subject: [PATCH 9/9] revert --- evalml/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evalml/__init__.py b/evalml/__init__.py index 4e9742080a..7642eacc81 100644 --- a/evalml/__init__.py +++ b/evalml/__init__.py @@ -24,4 +24,4 @@ warnings.filterwarnings("ignore", category=FutureWarning) warnings.filterwarnings("ignore", category=DeprecationWarning) -__version__ = "0.84.0" +__version__ = "0.83.0"