From c21ae8cb999606fce606e36449602fa74fd777f8 Mon Sep 17 00:00:00 2001 From: RHammond2 <13874373+RHammond2@users.noreply.github.com> Date: Thu, 14 Mar 2024 11:15:43 -0700 Subject: [PATCH] bump version and finalize revisions --- .github/workflows/ci-tests.yml | 14 +++++++------- CHANGELOG.md | 3 ++- openoa/__init__.py | 2 +- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 996055cc..067be00f 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -3,13 +3,13 @@ name: Run Unit and Regression Tests with Code Coverage on: push: branches: [main, develop] - pull_request: - branches: [main, develop] - paths-ignore: # No need to rerun all the tests if we're only editing documentation and examples - - "examples/**.ipynb" - - "sphinx/**" - - "**.md" - - "**.rst" + pull_request: + branches: [main, develop] + paths-ignore: # No need to rerun all the tests if we're only editing documentation and examples + - "examples/**.ipynb" + - "sphinx/**" + - "**.md" + - "**.rst" schedule: - cron: "0 0 * * MON" diff --git a/CHANGELOG.md b/CHANGELOG.md index 238a2e90..70d884d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Changelog All notable changes to this project will be documented in this file. If you make a notable change to the project, please add a line describing the change to the "unreleased" section. The maintainers will make an effort to keep the [Github Releases](https://github.com/NREL/OpenOA/releases) page up to date with this changelog. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). -## Unreleased - TBD +## v3.1 - 2024-03-14 - Updated compatibility with Pandas datetime offsets. All uppercase offset strings representing one hour or less have been replaced with the lowercase version. This stems from an update in the @@ -40,6 +40,7 @@ All notable changes to this project will be documented in this file. If you make makes the power curve filtering more robust to turbine power outliers above rated power. - Fixed a minor bug in the Cubico example workflow that caused the download of reanalysis data without checking for its existence, unlike what is done with the project data. +- Updates the README file and documentation site homepage to be more user friendly. ## [3.0.1 - 2023-12-22] diff --git a/openoa/__init__.py b/openoa/__init__.py index 40d547e9..646b3fb3 100644 --- a/openoa/__init__.py +++ b/openoa/__init__.py @@ -1,4 +1,4 @@ -__version__ = "3.0.1" +__version__ = "3.1.0" """ When bumping version, please be sure to also update parameters in sphinx/conf.py """