Skip to content

Commit 77a3c6c

Browse files
author
Kazuki Suzuki Przyborowski
committed
Small update, version up
1 parent c3957b3 commit 77a3c6c

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

pyneofile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@
6060
__program_name__ = "PyNeoFile"
6161
__project__ = __program_name__
6262
__project_url__ = "https://github.com/GameMaker2k/PyNeoFile"
63-
__version_info__ = (0, 21, 2, "RC 1", 1)
64-
__version_date_info__ = (2025, 9, 24, "RC 1", 1)
63+
__version_info__ = (0, 21, 4, "RC 1", 1)
64+
__version_date_info__ = (2025, 9, 26, "RC 1", 1)
6565
__version_date__ = str(__version_date_info__[0]) + "." + str(
6666
__version_date_info__[1]).zfill(2) + "." + str(__version_date_info__[2]).zfill(2)
6767
__revision__ = __version_info__[3]

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
[project]
22
name = "PyNeoFile"
3-
version = "0.21.2"
3+
version = "0.21.4"
44
readme = "README.md"
55
license = { text = "BSD-3-Clause" }
66
keywords = []
77
description = "A tar like file format name archivefile."
88
authors = [
99
{ name = "Kazuki Przyborowski", email = "[email protected]" },
10+
{ name = "Kazuki Suzuki Sadeghi", email = "[email protected]" },
11+
{ name = "Game Maker 2k", email = "[email protected]" },
1012
]
1113

pyshell-old.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
Copyright 2018-2024 Game Maker 2k - http://intdb.sourceforge.net/
1414
Copyright 2018-2024 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
1515
16-
$FileInfo: pyshell-old.py - Last Update: 3/7/2025 Ver. 0.19.0 RC 1 - Author: cooldude2k $
16+
$FileInfo: pyshell-old.py - Last Update: 8/26/2025 Ver. 0.21.4 RC 1 - Author: cooldude2k $
1717
'''
1818

1919
from __future__ import absolute_import, division, print_function, unicode_literals, generators, with_statement, nested_scopes

pyshell.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
Copyright 2018-2024 Game Maker 2k - http://intdb.sourceforge.net/
1414
Copyright 2018-2024 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
1515
16-
$FileInfo: pyshell.py - Last Update: 3/7/2025 Ver. 0.19.0 RC 1 - Author: cooldude2k $
16+
$FileInfo: pyshell.py - Last Update: 8/26/2025 Ver. 0.21.4 RC 1 - Author: cooldude2k $
1717
'''
1818

1919
from __future__ import absolute_import, division, print_function, unicode_literals, generators, with_statement, nested_scopes

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
Copyright 2016-2024 Game Maker 2k - http://intdb.sourceforge.net/
1414
Copyright 2016-2024 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
1515
16-
$FileInfo: setup.py - Last Update: 8/24/2025 Ver. 0.21.2 RC 1 - Author: cooldude2k $
16+
$FileInfo: setup.py - Last Update: 8/26/2025 Ver. 0.21.4 RC 1 - Author: cooldude2k $
1717
'''
1818

1919
import os
@@ -67,8 +67,8 @@
6767
pymodule['name'] = 'PyArchiveFile'
6868
pymodule['author'] = 'Kazuki Przyborowski'
6969
pymodule['authoremail'] = '[email protected]'
70-
pymodule['maintainer'] = 'Kazuki Przyborowski'
71-
pymodule['maintaineremail'] = 'kazuki.przyborowski@gmail.com'
70+
pymodule['maintainer'] = 'Kazuki Suzuki Sadeghi'
71+
pymodule['maintaineremail'] = 'kazuki.suzuki.sadeghi@gmail.com'
7272
pymodule['description'] = 'A tar like file format name neofile.'
7373
pymodule['license'] = 'Revised BSD License'
7474
pymodule['keywords'] = 'neofile neo neofile-neo pyneofile python python-neofile neko nekofile neko-neo nekofile-neo pynekofile python python-nekofile compression tarball gzip tar bzip2 tar-neo lzma xz gz lzma2 xz2 tarlike tarlite'

0 commit comments

Comments
 (0)