diff --git a/docs/changelog.qmd b/docs/changelog.qmd index 29427ec..306a002 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 fef9c7f..4d41043 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}"