File tree Expand file tree Collapse file tree 4 files changed +40
-3
lines changed Expand file tree Collapse file tree 4 files changed +40
-3
lines changed Original file line number Diff line number Diff line change
1
+ name : Upload release to PyPI (Test & Live)
2
+ on :
3
+ push :
4
+ branches : [main]
5
+ release :
6
+ types : [published]
7
+
8
+ jobs :
9
+ pypi-publish :
10
+ name : Upload release to PyPI (Test & Live)
11
+ runs-on : ubuntu-latest
12
+ environment :
13
+ name : pypi
14
+ url : https://pypi.org/p/json-merge-patch
15
+ permissions :
16
+ id-token : write # IMPORTANT: this permission is mandatory for trusted publishing
17
+ steps :
18
+ - uses : actions/checkout@v4
19
+ - uses : actions/setup-python@v5
20
+ with :
21
+ python-version : ' 3.12'
22
+ - run : pip install --upgrade build
23
+ - run : python -m build --sdist --wheel
24
+ - name : Publish package distributions to TEST PyPI
25
+ if : github.event_name == 'push'
26
+ uses : pypa/gh-action-pypi-publish@release/v1
27
+ with :
28
+ repository-url : https://test.pypi.org/legacy/
29
+ skip-existing : true
30
+ - name : Publish package distributions to LIVE PyPI
31
+ if : github.event_name == 'release'
32
+ uses : pypa/gh-action-pypi-publish@release/v1
Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ 0.3.0] - 2025-03-25
10
+
11
+ ## Fixed
12
+
13
+ Remove invalid dash-separated key 'description-file' in our packaging info https://github.com/OpenDataServices/json-merge-patch/pull/9
14
+
9
15
## Changed
10
16
11
17
Python support is now 3.9+ only
Original file line number Diff line number Diff line change 1
- [metadata]
2
- description-file = README.md
1
+
Original file line number Diff line number Diff line change 1
1
from setuptools import setup
2
2
setup (name = 'json-merge-patch' ,
3
- version = '0.2 ' ,
3
+ version = '0.3.0 ' ,
4
4
description = 'JSON Merge Patch library (https://tools.ietf.org/html/rfc7386)' ,
5
5
author = 'Open Data Services' ,
6
6
You can’t perform that action at this time.
0 commit comments