Skip to content

Commit 9a6462b

Browse files
committed
3.2.2
Fix a typo in the version string.
1 parent d7ea4c8 commit 9a6462b

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

Diff for: README.md

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ The script will keep updated with the newest releases of the pre-compiled module
2323

2424
| `mpegCoder` | Uploaded |
2525
| :-----------: | :--------: |
26+
| `3.2.2` | :heavy_check_mark: |
2627
| `3.2.1` | :heavy_check_mark: |
2728
| `3.2.0` | :heavy_check_mark: |
2829
| `3.1.0` | :heavy_check_mark: |

Diff for: scripts/init_linux.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import ctypes
1818
from . import webtools
1919

20-
__verion__ = '3.2.1'
20+
__version__ = '3.2.2'
2121
__inner_version__ = '3.2.0'
2222
PY_VERSION = sysconfig.get_python_version()
2323

@@ -122,7 +122,7 @@ def add_dependencies(self, *names):
122122

123123

124124
__all__ = (
125-
'webtools', '__verion__',
125+
'webtools', '__version__',
126126
'setGlobal', 'readme',
127127
'MpegDecoder', 'MpegEncoder',
128128
'MpegClient', 'MpegServer'

Diff for: scripts/init_win.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import sysconfig
1717
from . import webtools
1818

19-
__verion__ = '3.2.1'
19+
__version__ = '3.2.2'
2020
__inner_version__ = '3.2.0'
2121
PY_VERSION = sysconfig.get_python_version()
2222

@@ -50,7 +50,7 @@ def get_release_name(mpegcoder_ver='3.x', python_ver='3.6'):
5050

5151

5252
__all__ = (
53-
'webtools', '__verion__',
53+
'webtools', '__version__',
5454
'setGlobal', 'readme',
5555
'MpegDecoder', 'MpegEncoder',
5656
'MpegClient', 'MpegServer'

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def find_packages(path=('.', ), prefix=''):
4343
yield name
4444

4545

46-
VERSION = '3.2.1'
46+
VERSION = '3.2.2'
4747
DEPENDENCY_VERSION = '3.2.0'
4848
PUBLISH_VERSION = ''
4949
# PUBLISH_VERSION Should begin from '', each failed attmpt, it need to be

0 commit comments

Comments
 (0)