Skip to content

Commit

Permalink
phonemizer-3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathieu Bernard committed Oct 25, 2021
1 parent 7f59735 commit 407b1b4
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Version numbers follow [semantic versioning](https://semver.org)

## not yet released
## phonemizer-3.0

* **breaking change**

Expand Down
2 changes: 1 addition & 1 deletion phonemizer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"""Multilingual text to phones converter"""


__version__ = '3.0-dev0'
__version__ = '3.0'
"""Phonemizer version"""


Expand Down
2 changes: 1 addition & 1 deletion phonemizer/backend/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

from .espeak.espeak import EspeakBackend
from .espeak.mbrola import EspeakMbrolaBackend
from .festival import FestivalBackend
from .festival.festival import FestivalBackend
from .segments import SegmentsBackend


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import sys
import tempfile

from phonemizer import lispy
from phonemizer.backend.festival import lispy
from phonemizer.backend.base import BaseBackend
from phonemizer.logger import get_logger
from phonemizer.punctuation import Punctuation
Expand Down
File renamed without changes.

0 comments on commit 407b1b4

Please sign in to comment.