Skip to content

Commit 7b2f591

Browse files
Prepare for v1.4.0 (#74)
1 parent bbbaeba commit 7b2f591

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ on:
77
description: "Publish artifacts (Y|N)"
88
required: true
99
default: "N"
10+
publish_to_test_pypi:
11+
description: "Publish to TEST PyPi (Y|N)"
12+
required: true
13+
default: "N"
1014
release:
1115
types: [published]
1216
push:
@@ -109,6 +113,7 @@ jobs:
109113
run: |
110114
cd dist
111115
twine upload -r testpypi dist/*
116+
if: github.event_name == 'workflow_dispatch' && github.event.inputs.publish_to_test_pypi == 'Y'
112117
env:
113118
TWINE_USERNAME: __token__
114119
TWINE_PASSWORD: ${{ secrets.test_pypi_password }}

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [1.4.0] - 2026-03-??
8+
## [1.4.0] - 2026-03-07 :copilot:
99

1010
- Add OAS 3.1 support, cross-version warnings, and fix nullable spacing, by @dcode.
1111
- Fix MARKDOWN style table separators to use minimum 3 hyphens (issue #39), reported by @michael-nok.

0 commit comments

Comments
 (0)