PyNeoFile 0.28.0__tar.gz → 0.28.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: PyNeoFile
3
- Version: 0.28.0
3
+ Version: 0.28.2
4
4
  Summary: A tar like file format name NeoFile.
5
5
  Home-page: https://github.com/GameMaker2k/PyNeoFile
6
6
  Download-URL: https://github.com/GameMaker2k/PyNeoFile/archive/master.tar.gz
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: PyNeoFile
3
- Version: 0.28.0
3
+ Version: 0.28.2
4
4
  Summary: A tar like file format name NeoFile.
5
5
  Home-page: https://github.com/GameMaker2k/PyNeoFile
6
6
  Download-URL: https://github.com/GameMaker2k/PyNeoFile/archive/master.tar.gz
@@ -14,7 +14,7 @@
14
14
  Copyright 2018-2026 Game Maker 2k - http://intdb.sourceforge.net/
15
15
  Copyright 2018-2026 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
16
16
 
17
- $FileInfo: neofile.py - Last Update: 2/3/2026 Ver. 0.28.0 RC 1 - Author: cooldude2k $
17
+ $FileInfo: neofile.py - Last Update: 2/4/2026 Ver. 0.28.2 RC 1 - Author: cooldude2k $
18
18
  '''
19
19
 
20
20
  from __future__ import absolute_import, division, print_function, unicode_literals, generators, with_statement, nested_scopes
@@ -13,7 +13,7 @@
13
13
  Copyright 2018-2026 Game Maker 2k - http://intdb.sourceforge.net/
14
14
  Copyright 2018-2026 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
15
15
 
16
- $FileInfo: neofile_py3.py - Last Update: 2/3/2026 Ver. 0.28.0 RC 1 - Author: cooldude2k $
16
+ $FileInfo: neofile_py3.py - Last Update: 2/4/2026 Ver. 0.28.2 RC 1 - Author: cooldude2k $
17
17
  '''
18
18
 
19
19
  from __future__ import annotations
@@ -14,7 +14,7 @@
14
14
  Copyright 2018-2026 Game Maker 2k - http://intdb.sourceforge.net/
15
15
  Copyright 2018-2026 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
16
16
 
17
- $FileInfo: pyneofile.py - Last Update: 2/3/2026 Ver. 0.28.0 RC 1 - Author: cooldude2k $
17
+ $FileInfo: pyneofile.py - Last Update: 2/4/2026 Ver. 0.28.2 RC 1 - Author: cooldude2k $
18
18
  '''
19
19
 
20
20
  from __future__ import absolute_import, division, print_function, unicode_literals, generators, with_statement, nested_scopes
@@ -655,12 +655,12 @@ __project__ = __program_name__
655
655
  __program_alt_name__ = __program_name__
656
656
  __project_url__ = "https://github.com/GameMaker2k/PyNeoFile"
657
657
  __project_release_url__ = __project_url__+"/releases/latest"
658
- __version_info__ = (0, 28, 0, "RC 1", 1)
659
- __version_date_info__ = (2026, 2, 3, "RC 1", 1)
658
+ __version_info__ = (0, 28, 2, "RC 1", 1)
659
+ __version_date_info__ = (2026, 2, 4, "RC 1", 1)
660
660
  __version_date__ = str(__version_date_info__[0]) + "." + str(
661
661
  __version_date_info__[1]).zfill(2) + "." + str(__version_date_info__[2]).zfill(2)
662
662
  __revision__ = __version_info__[3]
663
- __revision_id__ = "$Id: c00061c18257e7fd91e274ad71aa6cb40010ef33 $"
663
+ __revision_id__ = "$Id: ade78c8a3402f6aa7f3d29fd1be34be26380a839 $"
664
664
  if(__version_info__[4] is not None):
665
665
  __version_date_plusrc__ = __version_date__ + \
666
666
  "-" + str(__version_date_info__[4])