Skip to content

Commit 8d38263

Browse files
committed
Prepare for v2.3.2 release
1 parent ea83518 commit 8d38263

3 files changed

Lines changed: 24 additions & 17 deletions

File tree

.github/workflows/deploy.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ name: Deploy to PyPi
22
on:
33
push:
44
tags:
5-
- 'v*'
5+
- "v*"
66
jobs:
77
build:
88
name: Build Wheels and Package 🛠️
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout Code
1212
uses: actions/checkout@v5
13-
- name: Set up Python 3.12
13+
- name: Set up Python 3.x
1414
uses: actions/setup-python@v6
1515
with:
1616
python-version: "3.x"
@@ -84,6 +84,8 @@ jobs:
8484
inputs: >-
8585
./dist/*.tar.gz
8686
./dist/*.whl
87+
- name: Checkout Code
88+
uses: actions/checkout@v5
8789
- name: Create GitHub Release
8890
env:
8991
GITHUB_TOKEN: ${{ github.token }}
@@ -99,7 +101,7 @@ jobs:
99101
exit
100102
}
101103
}
102-
header_found == 1 && /^\* / { print }
104+
header_found == 1 && /^\- / { print }
103105
' CHANGELOG.md)
104106
gh release create
105107
'${{ github.ref_name }}'

CHANGELOG.md

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,39 @@
11
# Change Log
22

3-
## [v2.3.1](https://github.com/simvue-io/client/releases/tag/v2.3.1) - 2026-01-30
3+
## [v2.3.2](https://github.com/simvue-io/python-api/releases/tag/v2.3.2) - 2026-02-10
4+
5+
- Add handling of metrics based on size and enforce 10k points per grid metric as per server.
6+
- Freeze `flatdict==4.0.0` do address install issues.
7+
8+
## [v2.3.1](https://github.com/simvue-io/python-api/releases/tag/v2.3.1) - 2026-01-30
49

510
- Allow negative time when logging simulation metrics.
611

7-
## [v2.3.0](https://github.com/simvue-io/client/releases/tag/v2.3.0) - 2025-12-11
12+
## [v2.3.0](https://github.com/simvue-io/python-api/releases/tag/v2.3.0) - 2025-12-11
813

914
- Refactored sender functionality introducing new `Sender` class.
1015
- Added missing `created` property to `User` and `Tenant` LLAPI objects.
1116

12-
## [v2.2.4](https://github.com/simvue-io/client/releases/tag/v2.2.4) - 2025-11-13
17+
## [v2.2.4](https://github.com/simvue-io/python-api/releases/tag/v2.2.4) - 2025-11-13
1318

1419
- Added fixes for future servers which disallow extra arguments in requests.
1520

16-
## [v2.2.3](https://github.com/simvue-io/client/releases/tag/v2.2.3) - 2025-11-10
21+
## [v2.2.3](https://github.com/simvue-io/python-api/releases/tag/v2.2.3) - 2025-11-10
1722

1823
- Use `msgpack` for `GridMetrics` in a manner similar to `Metrics`.
1924
- Fix incorrect setting of global log level.
2025
- Fix alert duplication in offline mode and other offline fixes.
2126

22-
## [v2.2.2](https://github.com/simvue-io/client/releases/tag/v2.2.2) - 2025-10-14
27+
## [v2.2.2](https://github.com/simvue-io/python-api/releases/tag/v2.2.2) - 2025-10-14
2328

2429
- Enforced use of UTC for all datetime recording.
2530
- Added support for Python3.14.
2631

27-
## ~~[v2.2.1](https://github.com/simvue-io/client/releases/tag/v2.2.1) - 2025-10-13~~
32+
## ~~[v2.2.1](https://github.com/simvue-io/python-api/releases/tag/v2.2.1) - 2025-10-13~~
2833

2934
**Broken release yanked from PyPi**
3035

31-
## [v2.2.0](https://github.com/simvue-io/client/releases/tag/v2.2.0) - 2025-09-22
36+
## [v2.2.0](https://github.com/simvue-io/python-api/releases/tag/v2.2.0) - 2025-09-22
3237

3338
- Improves handling of Conda based environments in metadata collection.
3439
- Adds additional options to `Client.get_runs`.
@@ -37,7 +42,7 @@
3742
- Improves checks on `offline.cache` directory specification in config file.
3843
- Added ability to upload multiple runs as a batch via the low level API.
3944

40-
## [v2.1.2](https://github.com/simvue-io/client/releases/tag/v2.1.2) - 2025-06-25
45+
## [v2.1.2](https://github.com/simvue-io/python-api/releases/tag/v2.1.2) - 2025-06-25
4146

4247
- Fixed issue in downloading files from tenant runs.
4348
- Fixed bug in pagination whereby the count value specified by the user is ignored.
@@ -47,7 +52,7 @@
4752
- Ensured all threads have `daemon=True` to prevent hanging on termination.
4853
- Added error when `close()` method is called within the `simvue.Run` context manager.
4954

50-
## [v2.1.1](https://github.com/simvue-io/client/releases/tag/v2.1.1) - 2025-04-25
55+
## [v2.1.1](https://github.com/simvue-io/python-api/releases/tag/v2.1.1) - 2025-04-25
5156

5257
- Changed from CO2 Signal to ElectricityMaps
5358
- Fixed a number of bugs in how offline mode is handled with emissions
@@ -56,18 +61,18 @@
5661
- Fixed bug in setting visibility in `run.init` method
5762
- Default setting in `Client.get_runs` is now `show_shared=True`
5863

59-
## [v2.1.0](https://github.com/simvue-io/client/releases/tag/v2.1.0) - 2025-03-28
64+
## [v2.1.0](https://github.com/simvue-io/python-api/releases/tag/v2.1.0) - 2025-03-28
6065

6166
- Removed CodeCarbon dependence in favour of a slimmer solution using the CO2 Signal API.
6267
- Added sorting to server queries, users can now specify to sort by columns during data retrieval from the database.
6368
- Added pagination of results from server to reduce await time in responses.
6469
- Added equivalent of folder details modification function to `Client` class.
6570

66-
## [v2.0.1](https://github.com/simvue-io/client/releases/tag/v2.0.1) - 2025-03-24
71+
## [v2.0.1](https://github.com/simvue-io/python-api/releases/tag/v2.0.1) - 2025-03-24
6772

6873
- Improvements to docstrings on methods, classes and functions.
6974

70-
## [v2.0.0](https://github.com/simvue-io/client/releases/tag/v2.0.0) - 2025-03-07
75+
## [v2.0.0](https://github.com/simvue-io/python-api/releases/tag/v2.0.0) - 2025-03-07
7176

7277
- Add new example notebooks
7378
- Update and refactor examples to work with v2.0
@@ -305,6 +310,6 @@
305310

306311
- The previous `Simvue` class has been split into `Run` and `Client`. When creating a run use the new `Run` class rather than `Simvue`.
307312

308-
## [v0.1.0](https://github.com/simvue-io/client/releases/tag/v0.1.0) - 2022-10-25
313+
## [v0.1.0](https://github.com/simvue-io/python-api/releases/tag/v0.1.0) - 2022-10-25
309314

310315
- First release.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "simvue"
3-
version = "2.3.1"
3+
version = "2.3.2"
44
description = "Simulation tracking and monitoring"
55
authors = [
66
{name = "Simvue Development Team", email = "info@simvue.io"}

0 commit comments

Comments
 (0)