diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 804b96be12..61da3b0ff1 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -31,7 +31,7 @@ body: attributes: label: Version description: What version of Modulus are you running? - placeholder: "example: 0.7.0" + placeholder: "example: 0.8.0" validations: required: true diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a25143c8f..964a981d86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ 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). -## [0.8.0a0] - 2024-09-XX +## [0.9.0a0] - 2024-11-XX ### Added @@ -34,6 +34,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Dependencies +## [0.8.0] - 2024-09-24 + +### Added + +- Graph Transformer processor for GraphCast/GenCast. +- Utility to generate STL from Signed Distance Field. +- Metrics for CAE and CFD domain such as integrals, drag, and turbulence invariances and + spectrum. +- Added gradient clipping to StaticCapture utilities. +- Bistride Multiscale MeshGraphNet example. + +### Changed + +- Refactored CorrDiff training recipe for improved usability +- Fixed timezone calculation in datapipe cosine zenith utility. + ## [0.7.0] - 2024-07-23 ### Added diff --git a/modulus/__init__.py b/modulus/__init__.py index 5644a98c0f..27763ef8a0 100644 --- a/modulus/__init__.py +++ b/modulus/__init__.py @@ -19,4 +19,4 @@ from .models.meta import ModelMetaData from .models.module import Module -__version__ = "0.8.0a0" +__version__ = "0.8.0"