Skip to content

Commit b98d586

Browse files
AidosAidos
authored andcommitted
v0.1.3: fix Documentation URL on PyPI
1 parent 3115912 commit b98d586

3 files changed

Lines changed: 11 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to Modeleon will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.1.3] — 2026-04-27
9+
10+
Metadata-only release.
11+
12+
- **PyPI Documentation URL** now points to the GitHub README
13+
(`github.com/modeleonai/modeleon#readme`) instead of the unbuilt
14+
`modeleon.ai/docs` page. No code or behavior changes.
15+
816
## [0.1.2] — 2026-04-27
917

1018
First public release.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "modeleon"
7-
version = "0.1.2"
7+
version = "0.1.3"
88
description = "Financial Model Engineering — Python code compiles to live Excel formulas"
99
requires-python = ">=3.12"
1010
license = "Apache-2.0"
@@ -44,7 +44,7 @@ dependencies = [
4444
[project.urls]
4545
Homepage = "https://modeleon.ai"
4646
Repository = "https://github.com/modeleonai/modeleon"
47-
Documentation = "https://modeleon.ai/docs"
47+
Documentation = "https://github.com/modeleonai/modeleon#readme"
4848
Changelog = "https://github.com/modeleonai/modeleon/blob/main/CHANGELOG.md"
4949
Issues = "https://github.com/modeleonai/modeleon/issues"
5050

src/modeleon/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
plugins.py - extension point registry
5252
"""
5353

54-
__version__ = "0.1.2"
54+
__version__ = "0.1.3"
5555

5656
# Plugin system — extensions register via entry points
5757
from modeleon.plugins import load_plugins as _load_plugins

0 commit comments

Comments
 (0)