Skip to content

Commit 17f7c02

Browse files
committed
Small update
1 parent 0a30c12 commit 17f7c02

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

neofile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
Copyright 2018-2024 Game Maker 2k - http://intdb.sourceforge.net/
1515
Copyright 2018-2024 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
1616
17-
$FileInfo: neofile.py - Last Update: 11/16/2025 Ver. 0.27.4 RC 1 - Author: cooldude2k $
17+
$FileInfo: neofile.py - Last Update: 11/19/2025 Ver. 0.27.6 RC 1 - Author: cooldude2k $
1818
'''
1919

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

pyneofile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
Copyright 2018-2024 Game Maker 2k - http://intdb.sourceforge.net/
1515
Copyright 2018-2024 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
1616

17-
$FileInfo: pyneofile.py - Last Update: 11/16/2025 Ver. 0.27.4 RC 1 - Author: cooldude2k $
17+
$FileInfo: pyneofile.py - Last Update: 11/19/2025 Ver. 0.27.6 RC 1 - Author: cooldude2k $
1818
'''
1919

2020
from __future__ import absolute_import, division, print_function, unicode_literals, generators, with_statement, nested_scopes
@@ -655,8 +655,8 @@ def _get(section_dict, key, default=None):
655655
__program_alt_name__ = __program_name__
656656
__project_url__ = "https://github.com/GameMaker2k/PyNeoFile"
657657
__project_release_url__ = __project_url__+"/releases/latest"
658-
__version_info__ = (0, 27, 4, "RC 1", 1)
659-
__version_date_info__ = (2025, 11, 16, "RC 1", 1)
658+
__version_info__ = (0, 27, 6, "RC 1", 1)
659+
__version_date_info__ = (2025, 11, 19, "RC 1", 1)
660660
__version_date__ = str(__version_date_info__[0]) + "." + str(
661661
__version_date_info__[1]).zfill(2) + "." + str(__version_date_info__[2]).zfill(2)
662662
__revision__ = __version_info__[3]

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[project]
22
name = "PyNeoFile"
3-
version = "0.27.4"
3+
version = "0.27.6"
44
readme = "README.md"
55
license = { text = "BSD-3-Clause" }
66
keywords = []
77
description = "A tar like file format name NeoFile."
88
authors = [
9-
{ name = "Kazuhika Kitsune-chan", email = "[email protected]" },
10-
{ name = "Kazuhana Neko-chan", email = "[email protected]" },
11-
{ name = "Kazuki Neko-kun", email = "[email protected]" },
9+
{ name = "Himari Kitsune-chan", email = "[email protected]" },
10+
{ name = "Ouka Neko-chan", email = "[email protected]" },
11+
{ name = "Tsukiumi Neko-kun", email = "[email protected]" },
1212
{ name = "Kazuki Suzuki Neko-kun", email = "[email protected]" },
1313
{ name = "Game Maker 2k", email = "[email protected]" },
1414
]

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@
6565
pymodule['verdatelist'] = (int(setuppy_dateinfo_exp[0]), int(setuppy_dateinfo_exp[1]), int(
6666
setuppy_dateinfo_exp[2]), str(setuppy_dateinfo_exp[3]), int(setuppy_dateinfo_exp[4]))
6767
pymodule['name'] = 'PyNeoFile'
68-
pymodule['author'] = 'Kazuhana Neko-chan'
68+
pymodule['author'] = 'Ouka Neko-chan'
6969
pymodule['authoremail'] = '[email protected]'
70-
pymodule['maintainer'] = 'Kazuhika Kitsune-chan'
70+
pymodule['maintainer'] = 'Himari Kitsune-chan'
7171
pymodule['maintaineremail'] = '[email protected]'
7272
pymodule['description'] = 'A tar like file format name NeoFile.'
7373
pymodule['license'] = 'Revised BSD License'

0 commit comments

Comments
 (0)