From 50e4eee3a395ce0d4c0973f8197c8d714c7c6dcb Mon Sep 17 00:00:00 2001 From: innixma Date: Wed, 14 Jun 2023 20:07:13 +0000 Subject: [PATCH] Update to v0.8.0 --- README.md | 2 +- VERSION | 2 +- docs/conf.py | 2 +- release_instructions/ReleaseInstructions.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 60c7db3a7de..f2a009edc8a 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ AutoGluon automates machine learning tasks enabling you to easily achieve strong # First install package from terminal: # pip install -U pip # pip install -U setuptools wheel -# pip install autogluon # autogluon==0.7.0 +# pip install autogluon # autogluon==0.8.0 from autogluon.tabular import TabularDataset, TabularPredictor train_data = TabularDataset('https://autogluon.s3.amazonaws.com/datasets/Inc/train.csv') diff --git a/VERSION b/VERSION index 7deb86fee42..8adc70fdd9d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.7.1 \ No newline at end of file +0.8.0 \ No newline at end of file diff --git a/docs/conf.py b/docs/conf.py index 96d9745c11f..fac27162dbd 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -4,7 +4,7 @@ sys.path = ['.', '..'] + sys.path project = 'AutoGluon' -release = '0.7.0' +release = '0.8.0' copyright = '2023, All authors. Licensed under Apache 2.0.' author = 'AutoGluon contributors' diff --git a/release_instructions/ReleaseInstructions.md b/release_instructions/ReleaseInstructions.md index f2f62bd69b8..b39489f67c7 100644 --- a/release_instructions/ReleaseInstructions.md +++ b/release_instructions/ReleaseInstructions.md @@ -2,7 +2,7 @@ ## Prior to release: 1 week out -* Ensure the version specified in `docs/conf.py`, `VERSION`, and `docs/index.md` align with the intended release version. +* Ensure the version specified in `docs/conf.py` and `VERSION` align with the intended release version. * Check all dependency version ranges. * Ensure all dependencies are not capped by major version, unless the reason is documented inline. * Example of major version cap: `scikit-learn<2`