Skip to content

Commit 66696c3

Browse files
committed
update changelog and bump patch version
1 parent 09e617b commit 66696c3

File tree

5 files changed

+25
-3
lines changed

5 files changed

+25
-3
lines changed

.github/workflows/cd-pipeline.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,14 @@ jobs:
5959
with:
6060
user: __token__
6161
password: ${{ secrets.PYPI_API_TOKEN }}
62+
63+
publish_docs:
64+
name: Trigger docs pipeline
65+
runs-on: ubuntu-latest
66+
steps:
67+
- name: Trigger downstream workflow
68+
uses: peter-evans/repository-dispatch@v3
69+
with:
70+
token: ${{ secrets.GITHUB_TOKEN }}
71+
repository: hololinked-dev/docs
72+
event-type: trigger-downstream

.vscode/settings.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,10 @@
33
80, 120
44
],
55
"editor.formatOnSave": true,
6-
"ruff.lineLength": 120
6+
"ruff.lineLength": 120,
7+
"[yaml]": {
8+
"editor.defaultFormatter": "esbenp.prettier-vscode",
9+
"editor.formatOnSave": true,
10+
"prettier.tabWidth": 2
11+
}
712
}

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
88

99
✓ means ready to try
1010

11+
## [v0.3.5] - 2025-10-18
12+
13+
- supports MongoDB as a database for property persistence (see infrastructure project in README to quick-setup)
14+
- adds HTTP handlers for reading/writing multiple properties at once (which used to be supported <0.2.11 but removed later until now by mistake)
15+
- refactors CI/CD pipelines - separate workflows for developing and publishing
16+
1117
## [v0.3.4] - 2025-10-02
1218

1319
- fixes a bug in content type in the forms of TD for HTTP protocol binding, when multiple serializers are used

hololinked/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.3.4"
1+
__version__ = "0.3.5"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "hololinked"
7-
version = "0.3.4"
7+
version = "0.3.5"
88
authors = [
99
{name = "Vignesh Vaidyanathan", email = "info@hololinked.dev"},
1010
]

0 commit comments

Comments
 (0)