Skip to content

Commit 49b8c03

Browse files
committed
Bump version to v0.11.0
Synchronize project version to 0.11.0 for a new release. Updated pyproject.toml and package __init__, and refreshed user-facing strings in README, docs, and the app UI/alert to reflect the new version.
1 parent 4bf00f9 commit 49b8c03

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ You can install `digiqual` directly from PyPI.
1515

1616
If you are managing a project with `uv`, add `digiqual` as a dependency:
1717
```bash
18-
# To install the latest stable release (v0.10.6):
18+
# To install the latest stable release (v0.11.0):
1919

2020
uv add digiqual
2121

@@ -32,7 +32,7 @@ uv pip install digiqual
3232

3333
### Option 2: Install via standard pip
3434

35-
To install the latest stable release (v0.10.6):
35+
To install the latest stable release (v0.11.0):
3636

3737
```bash
3838
pip install digiqual

app/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@
155155
ui.div(
156156
# About Section
157157
ui.div(
158-
ui.tags.strong("Version: "), "0.10.6", ui.br(),
158+
ui.tags.strong("Version: "), "0.11.0", ui.br(),
159159
ui.tags.strong("License: "), "MIT Open Source", ui.br(),
160160
ui.tags.strong("Author: "), "Josh Tyler", ui.br(),
161161
ui.tags.strong("Institution: "), "University of Bristol",

app/run_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def show_about():
5353
"""Triggers an alert box with version info inside the app."""
5454
if webview.windows:
5555
webview.windows[0].evaluate_js(
56-
'alert("DigiQual\\nVersion 0.10.6\\nStatistical Toolkit for Reliability Assessment in NDT");'
56+
'alert("DigiQual\\nVersion 0.11.0\\nStatistical Toolkit for Reliability Assessment in NDT");'
5757
)
5858

5959
def open_documentation():

docs/install.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ You can install `digiqual` directly from PyPI (or GitHub).
88

99
If you are managing a project with `uv`, add `digiqual` as a dependency:
1010

11-
- To install the latest stable release (v0.10.6):
11+
- To install the latest stable release (v0.11.0):
1212
```bash
1313
uv add "digiqual"
1414
```
@@ -26,7 +26,7 @@ uv pip install digiqual"
2626
2727
## Option 2: Install via standard pip
2828
29-
To install the latest stable release (v0.10.6):
29+
To install the latest stable release (v0.11.0):
3030
3131
```bash
3232
pip install digiqual

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "digiqual"
3-
version = "0.10.6"
3+
version = "0.11.0"
44
description = "Statistical Toolkit for Reliability Assessment in NDT"
55
authors = [
66
{name = "Josh Tyler", email = "josh.tyler@bristol.ac.uk"}

src/digiqual/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.10.6"
1+
__version__ = "0.11.0"
22

33
# Import core modules
44
from .core import SimulationStudy

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)