Skip to content

Commit a9ef790

Browse files
committed
version: 1.8.0
1 parent 33b9d34 commit a9ef790

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

docs/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ the native format of `Aegisub <http://www.aegisub.org/>`_; it also supports *Su
2020
line.text = "{\\be1}" + line.text
2121
subs.save("my_subtitles_edited.ass")
2222
23-
The library works in Python 3.8 or newer, with no extra dependencies.
23+
The library works in Python 3.9 or newer, with no extra dependencies.
2424
It’s available under the MIT license (see bottom of the page).
2525
To get started, simply install it using `pip <https://pypi.python.org/pypi/pip>`_: ``pip install pysubs2``.
2626
You can also clone `the GitHub repository <https://github.com/tkarabela/pysubs2/>`_.

docs/release-notes.rst

+10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
Release Notes
22
=============
33

4+
**1.8.0** --- released on 2024-12-24
5+
6+
- Added reader and writer for TTML subtitle format
7+
- Added reader for SAMI subtitle format (Issue #80)
8+
- Added reader for transcriptions from OpenAI Whisper JAX (Issue #73)
9+
- Added ``py.typed`` file to allow MyPy to check types for code using this library, patch by eggplants (https://github.com/eggplants)
10+
- Minor improvements to `pysubs2.formats.substation.parse_tags()` - now supports the ``\fn<fontname>`` tag, can optionally skip empty fragments
11+
- Added support for Python 3.13, removed support for Python 3.8
12+
13+
414
**1.7.3** --- released on 2024-07-27
515

616
- Fixed problem with ``multiprocessing.Pool`` crashing due to ``FormatAutodetectionError`` (Issue #97)

pysubs2/common.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def to_ssa_alignment(self) -> int:
6060

6161

6262
#: Version of the pysubs2 library.
63-
VERSION = "1.7.3"
63+
VERSION = "1.8.0"
6464

6565

6666
IntOrFloat = Union[int, float]

0 commit comments

Comments
 (0)