Skip to content

Commit d13dca1

Browse files
committed
Version update
1 parent 2221e2a commit d13dca1

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
[![Python](https://img.shields.io/badge/Python-3.12+-3776AB?style=for-the-badge&logo=python&logoColor=white)](https://www.python.org/)
1010
[![License](https://img.shields.io/badge/License-MIT-green.svg?style=for-the-badge)](license.md)
11-
[![Version](https://img.shields.io/badge/version-0.3.0-blue.svg?style=for-the-badge)](https://github.com/DOKOS-TAYOS/DifferentialLab)
11+
[![Version](https://img.shields.io/badge/version-0.3.1-blue.svg?style=for-the-badge)](https://github.com/DOKOS-TAYOS/DifferentialLab)
1212
[![Status](https://img.shields.io/badge/status-Beta-orange.svg?style=for-the-badge)](https://github.com/DOKOS-TAYOS/DifferentialLab)
1313
[![SciPy](https://img.shields.io/badge/SciPy-8CAAE6?style=for-the-badge&logo=scipy&logoColor=white)](https://scipy.org/)
1414
[![NumPy](https://img.shields.io/badge/NumPy-013243?style=for-the-badge&logo=numpy&logoColor=white)](https://numpy.org/)

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
project = "DifferentialLab"
1212
author = "Alejandro Mata Ali"
1313
copyright = "2026, Alejandro Mata Ali" # noqa: A001
14-
release = "0.3.0"
14+
release = "0.3.1"
1515
version = "0.3"
1616

1717
# -- General configuration ---------------------------------------------------

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
[![Python](https://img.shields.io/badge/Python-3.12+-3776AB?style=for-the-badge&logo=python&logoColor=white)](https://www.python.org/)
88
[![License](https://img.shields.io/badge/License-MIT-green.svg?style=for-the-badge)](https://github.com/DOKOS-TAYOS/DifferentialLab/blob/main/license.md)
9-
[![Version](https://img.shields.io/badge/version-0.3.0-blue.svg?style=for-the-badge)](https://github.com/DOKOS-TAYOS/DifferentialLab)
9+
[![Version](https://img.shields.io/badge/version-0.3.1-blue.svg?style=for-the-badge)](https://github.com/DOKOS-TAYOS/DifferentialLab)
1010
[![SciPy](https://img.shields.io/badge/SciPy-8CAAE6?style=for-the-badge&logo=scipy&logoColor=white)](https://scipy.org/)
1111
[![NumPy](https://img.shields.io/badge/NumPy-013243?style=for-the-badge&logo=numpy&logoColor=white)](https://numpy.org/)
1212

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "differential-lab"
7-
version = "0.3.0"
7+
version = "0.3.1"
88
description = "DifferentialLab — Numerical ODE solver with Tkinter GUI, predefined equations, and professional visualizations"
99
readme = "README.md"
1010
requires-python = ">=3.12"

src/config/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from typing import Final
44

55
APP_NAME: Final[str] = "DifferentialLab"
6-
APP_VERSION: Final[str] = "0.3.0"
6+
APP_VERSION: Final[str] = "0.3.1"
77

88
SOLVER_METHODS: Final[tuple[str, ...]] = (
99
"RK45",

src/utils/update_checker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def _fetch_latest_version(version_url: str | None = None) -> str | None:
9191
or default.
9292
9393
Returns:
94-
Version string (e.g. '0.3.0') or None if fetch failed.
94+
Version string (e.g. '0.3.1') or None if fetch failed.
9595
"""
9696
url = version_url or get_env("UPDATE_CHECK_URL", _DEFAULT_VERSION_URL, str)
9797

0 commit comments

Comments
 (0)