Skip to content

Commit e9bca9c

Browse files
terryyincursoragent
andcommitted
Release 3.8.1
Bump version for GitHub Actions PyPI publishing workflow. Fix save_version() so translate/version.py is updated on build. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 2fc606e commit e9bca9c

4 files changed

Lines changed: 11 additions & 4 deletions

File tree

CHANGES.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
Changelog
22
---------
3+
3.8.1
4+
-----
5+
6+
* Publish to PyPI via GitHub Actions on version tag push (trusted publishing)
7+
* Remove local ``twine upload`` from ``make release``; tag push triggers CI publish
8+
* Document PyPI trusted publisher setup in release guide
9+
310
3.8.0
411
-----
512

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@
6060
# built documents.
6161
#
6262
# The short X.Y version.
63-
version = '3.8.0'
63+
version = '3.8.1'
6464
# The full version, including alpha/beta/rc tags.
65-
release = '3.8.0'
65+
release = '3.8.1'
6666

6767
# The language for content autogenerated by Sphinx. Refer to documentation
6868
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def save_version():
3838
if content_file_new == content_file:
3939
return
4040
with open(version_path, 'w') as version_file_write:
41-
version_file_write.write(content_file)
41+
version_file_write.write(content_file_new)
4242

4343

4444
class VersionCommand(Command):

translate/version.py

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

0 commit comments

Comments
 (0)