diff --git a/barectf/version.py b/barectf/version.py index c7f30af..2b10cdb 100644 --- a/barectf/version.py +++ b/barectf/version.py @@ -24,5 +24,5 @@ __major_version__ = 3 __minor_version__ = 0 __patch_version__ = 2 -__pre_version__ = '-dev' +__pre_version__ = '' __version__ = f'{__major_version__}.{__minor_version__}.{__patch_version__}{__pre_version__}' diff --git a/pyproject.toml b/pyproject.toml index 5fe1b70..a04660a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,7 @@ build-backend = 'poetry.core.masonry.api' [tool.poetry] name = 'barectf' -version = '3.0.2-dev' +version = '3.0.2' description = 'Generator of ANSI C tracers which output CTF data streams' license = 'MIT' authors = ['Philippe Proulx ']