From b224dd6fa895af327ebad19d9359969bd9fe37b5 Mon Sep 17 00:00:00 2001 From: Ryan Walter Murray Date: Wed, 29 Oct 2025 13:53:27 +0100 Subject: [PATCH] Bump version number to 0.3.0 --- mikecore/__init__.py | 3 +-- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/mikecore/__init__.py b/mikecore/__init__.py index 916c9c8..552ac8e 100644 --- a/mikecore/__init__.py +++ b/mikecore/__init__.py @@ -2,7 +2,7 @@ import platform from pathlib import Path -__version__ = "0.3.0a0" +__version__ = "0.3.0" p = platform.architecture() if not "64" in p[0]: @@ -34,4 +34,3 @@ eumDLL.Init() MzCartDLL.Init(mikebin) DfsDLL.Init(mikebin) - diff --git a/pyproject.toml b/pyproject.toml index 2077d57..fe35931 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ path = "buildUtil/build.py" [project] name = "mikecore" -version = "0.3.0a0" +version = "0.3.0" description = "MIKE Core contains core libraries, like DFS (Data File System), EUM and more." readme = "README.md" license = { file = "LICENSE.txt" }