Skip to content

Commit 96d8ccc

Browse files
authored
Merge pull request #10 from hpc4cmb/tag_fix
Fix version tag error, missed before last release
2 parents d76b780 + a3fb7b2 commit 96d8ccc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ build-backend = "mesonpy"
99

1010
[project]
1111
name = "flacarray"
12-
version = "0.3.1"
12+
version = "0.3.2"
1313
description = "FLAC Compression of Arrays"
1414
readme = "README.md"
1515
maintainers = [
@@ -20,7 +20,7 @@ dependencies = [
2020
"numpy",
2121
]
2222
classifiers = [
23-
"Development Status :: 3 - Alpha",
23+
"Development Status :: 4 - Beta",
2424
"License :: OSI Approved :: BSD License",
2525
"Programming Language :: C",
2626
"Programming Language :: Python",

src/flacarray/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
import os
99

1010

11-
__version__ = "0.2.4"
11+
__version__ = "0.3.2"
1212

1313
from .array import FlacArray

0 commit comments

Comments
 (0)