From f5fb0330990daff587eacea48a48b98f5c741255 Mon Sep 17 00:00:00 2001 From: Jordan Perr-Sauer Date: Wed, 14 Jun 2023 16:21:03 -0600 Subject: [PATCH] pinning versions of components to tag names, Mpdating changelog --- CHANGELOG.md | 8 ++++++++ docker/Dockerfile | 6 +++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 774ea2b..2dc03f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # 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 format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## [0.0.2 - 2023-06-14] +- This version includes three example notebooks specific to the Entr Runtime environment, including an introduction to PyEntr, example AEP analysis with OpenOA, and a demonstration of the static yaw misalignment method with OpenOA. +- OpenOA and PyEntr were moved to pip installable packages and are no longer present in the user's source directory. +- Docker base is all-spark-notebook:python-3.9.12. +- Entr Warehouse v0.0.3 +- OpenOA v3.0rc2-entr0.0.2 +- pyentr v0.0.1 + ## [0.0.1 - 2022-08-01] - Initial release tag. Typically, you'd include a short description of all changes in a release here. - Docker base is all-spark-notebook:python-3.9.12. diff --git a/docker/Dockerfile b/docker/Dockerfile index 37b22c3..65be2db 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -9,11 +9,11 @@ FROM jupyter/all-spark-notebook:python-3.9.12 ARG ENTR_WAREHOUSE_GIT_URL=https://github.com/entralliance/entr_warehouse.git ARG ENTR_WAREHOUSE_GIT_BRANCH=0.0.3 -# entralliance / OpenOA @ develop_v3 @ 3ec93213b8b8083854a73f18e3c6c5a03e40562a -ARG OPENOA_PIP_REF=git+https://github.com/entralliance/OpenOA.git@820b483feae596f10adb59e67710e47a868c1d48#openoa +# OpenOA +ARG OPENOA_PIP_REF=git+https://github.com/entralliance/OpenOA.git@v3.0rc2-entr0.0.2#openoa # PyEntr -ARG PYENTR_PIP_REF=git+https://github.com/entralliance/py-entr.git@4491f4b2374f967b20efe9204546375c73b151cf#entr +ARG PYENTR_PIP_REF=git+https://github.com/entralliance/py-entr.git@v0.0.1#entr ## ------------------------------------------------------------------------------- ## SECTION: initial setup & package updates