From 8f858c29fd442789b77b5ab291a88d2d286b87c7 Mon Sep 17 00:00:00 2001 From: Brendan Date: Thu, 3 Oct 2024 17:42:50 +0200 Subject: [PATCH] Changes for release --- docs/changelog.qmd | 4 ++-- src/fiat/version.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/changelog.qmd b/docs/changelog.qmd index 29427ecc..306a0024 100644 --- a/docs/changelog.qmd +++ b/docs/changelog.qmd @@ -2,8 +2,8 @@ title: "What's new?" --- -## Unreleased -This contains the unreleased changes to Delft-FIAT. +## v0.1.0 (2024-10-03) +The first full release of Delft-FIAT. ### Added - Attribute `size` of `GeomSource` object for in situ size return; `count` becomes private diff --git a/src/fiat/version.py b/src/fiat/version.py index fef9c7f4..4d41043e 100644 --- a/src/fiat/version.py +++ b/src/fiat/version.py @@ -4,6 +4,6 @@ major = 1 minor = 0 build = 0 -suffix = ".dev" +suffix = "" __version__ = f"{main}.{major}.{minor}{suffix}"