Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ body:
attributes:
label: Version
description: What version of PhysicsNeMo and PhysicsNeMo Symbolic are you running?
placeholder: "example: 2.3.0"
placeholder: "example: 2.4.0"
validations:
required: true

Expand Down
12 changes: 1 addition & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,13 @@ 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).

## [2.4.0a0] - 2026-XX-YY

### Added

### Changed

### Deprecated

### Removed
## [2.4.0] - 2026-03-09

### Fixed

- Fixed HTTP Error 308 when running `examples/super_resolution.py`
- Fixed deprecated documentation links to the Johns Hopkins Turbulence Database

### Security

### Dependencies

- Updated package to use `physicsnemo` v2.0 APIs
Expand Down
8 changes: 4 additions & 4 deletions physicsnemo/sym/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "2.4.0a0"
__version__ = "2.5.0a0"

from pint import UnitRegistry

from .node import Node
from .key import Key
from .hydra.utils import main, compose
from .node import Node as Node
from .key import Key as Key
from .hydra.utils import main as main, compose as compose

# pint unit registry
ureg = UnitRegistry()
Expand Down