Skip to content

Commit 160b58b

Browse files
committed
Fix missing dependency in pyproject.toml; release 0.8.1
1 parent d6e3863 commit 160b58b

7 files changed

Lines changed: 18 additions & 6 deletions

File tree

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
# The short X.Y version.
4949
version = '0.8'
5050
# The full version, including alpha/beta/rc tags.
51-
release = '0.8.0'
51+
release = '0.8.1'
5252

5353
# The language for content autogenerated by Sphinx. Refer to documentation
5454
# for a list of supported languages.

doc/getting_started.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ To see the current configuration of your project, use the ``info`` command::
9797
Append label to : None
9898
Label generator : timestamp
9999
Timestamp format : %Y%m%d-%H%M%S
100-
Sumatra version : 0.8.0
100+
Sumatra version : 0.8.1
101101

102102
Sumatra automatically records the identity and versions of the simulation files
103103
and the simulator executable, stores links to any files created by the
@@ -178,7 +178,7 @@ available by running ``smt`` by itself::
178178
$ smt
179179
Usage: smt <subcommand> [options] [args]
180180

181-
Simulation/analysis management tool version 0.8.0
181+
Simulation/analysis management tool version 0.8.1
182182

183183
Available subcommands:
184184
init

doc/release_notes.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Release notes
66
.. toctree::
77
:maxdepth: 1
88

9+
releases/0.8.1.txt
910
releases/0.8.0.txt
1011
releases/0.7.0.txt
1112
releases/0.6.0.txt

doc/releases/0.8.1.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
===========================
2+
Sumatra 0.8.1 release notes
3+
===========================
4+
5+
*14th July 2025*
6+
7+
This is a bug-fix release:
8+
9+
- allow Sumatra to handle YAML files with both .yml and .yaml extensions
10+
- add missing dependency to pyproject.toml

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "Sumatra"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
authors = [
55
{name = "Sumatra authors and contributors", email = "andrew.davison@cnrs.fr"}
66
]
@@ -28,6 +28,7 @@ classifiers = [
2828
]
2929
dependencies = [
3030
"setuptools",
31+
"packaging",
3132
"parameters",
3233
"pyyaml"
3334
]

sumatra/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
'dependency_finder', 'web', 'decorators', 'publishing',
44
'users', 'core']
55

6-
__version__ = "0.8.0"
6+
__version__ = "0.8.1"

test/system/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
Label generator : timestamp
3030
Timestamp format : %Y%m%d-%H%M%S
3131
Plug-ins : \[\]
32-
Sumatra version : 0.8.0
32+
Sumatra version : 0.8.1
3333
"""
3434

3535

0 commit comments

Comments
 (0)