Skip to content

Commit 24f86ec

Browse files
committed
updated the version
1 parent 12c890d commit 24f86ec

4 files changed

Lines changed: 12 additions & 7 deletions

File tree

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,18 @@ Official Python client library for [TranslatePlus API](https://translateplus.io)
1919
## Installation
2020

2121
```bash
22-
pip install translateplus
22+
pip install translateplus-python
2323
```
2424

2525
For async support (optional):
2626

2727
```bash
28-
pip install translateplus[async]
28+
pip install translateplus-python[async]
29+
```
30+
31+
**Note**: The package name on PyPI is `translateplus-python`, but the import name is still `translateplus`:
32+
```python
33+
from translateplus import TranslatePlusClient # Import name stays the same
2934
```
3035

3136
## Quick Start

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ requires = ["setuptools>=61.0", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
6-
name = "translateplus"
7-
version = "2.0.4"
6+
name = "translateplus-python"
7+
version = "2.0.5"
88
description = "Official Python client library for TranslatePlus API - Professional translation service for text, HTML, emails, subtitles, and i18n files"
99
readme = "README.md"
1010
requires-python = ">=3.8"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
long_description = fh.read()
77

88
setup(
9-
name="translateplus",
10-
version="2.0.4",
9+
name="translateplus-python",
10+
version="2.0.5",
1111
author="TranslatePlus",
1212
author_email="support@translateplus.io",
1313
description="Official Python client library for TranslatePlus API",

translateplus/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
TranslatePlusValidationError,
1616
)
1717

18-
__version__ = "2.0.4"
18+
__version__ = "2.0.5"
1919
__all__ = [
2020
"TranslatePlusClient",
2121
"TranslatePlusError",

0 commit comments

Comments
 (0)