BCBvcl4pyAPI 0.1.8__tar.gz → 0.1.10__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.
Files changed (19) hide show
  1. {bcbvcl4pyapi-0.1.8/src/BCBvcl4pyAPI.egg-info → bcbvcl4pyapi-0.1.10}/PKG-INFO +8 -2
  2. {bcbvcl4pyapi-0.1.8 → bcbvcl4pyapi-0.1.10}/README.md +7 -1
  3. {bcbvcl4pyapi-0.1.8 → bcbvcl4pyapi-0.1.10}/pyproject.toml +1 -1
  4. {bcbvcl4pyapi-0.1.8 → bcbvcl4pyapi-0.1.10}/src/BCBvcl4pyAPI/__init__.py +3 -1
  5. {bcbvcl4pyapi-0.1.8 → bcbvcl4pyapi-0.1.10/src/BCBvcl4pyAPI.egg-info}/PKG-INFO +8 -2
  6. {bcbvcl4pyapi-0.1.8 → bcbvcl4pyapi-0.1.10}/src/BCBvcl4pyAPI.egg-info/SOURCES.txt +1 -1
  7. {bcbvcl4pyapi-0.1.8 → bcbvcl4pyapi-0.1.10}/LICENSE +0 -0
  8. {bcbvcl4pyapi-0.1.8 → bcbvcl4pyapi-0.1.10}/setup.cfg +0 -0
  9. {bcbvcl4pyapi-0.1.8 → bcbvcl4pyapi-0.1.10}/src/BCBvcl4pyAPI/AnsiStringAPI.py +0 -0
  10. {bcbvcl4pyapi-0.1.8 → bcbvcl4pyapi-0.1.10}/src/BCBvcl4pyAPI/BCBvcl4pyAPI.py +0 -0
  11. {bcbvcl4pyapi-0.1.8 → bcbvcl4pyapi-0.1.10}/src/BCBvcl4pyAPI/HyperDynamicArrayAPI.py +0 -0
  12. {bcbvcl4pyapi-0.1.8 → bcbvcl4pyapi-0.1.10}/src/BCBvcl4pyAPI/TIniFileAPI.py +0 -0
  13. /bcbvcl4pyapi-0.1.8/src/BCBvcl4pyAPI/TMemoryStream.py → /bcbvcl4pyapi-0.1.10/src/BCBvcl4pyAPI/TStreamAPI.py +0 -0
  14. {bcbvcl4pyapi-0.1.8 → bcbvcl4pyapi-0.1.10}/src/BCBvcl4pyAPI.egg-info/dependency_links.txt +0 -0
  15. {bcbvcl4pyapi-0.1.8 → bcbvcl4pyapi-0.1.10}/src/BCBvcl4pyAPI.egg-info/requires.txt +0 -0
  16. {bcbvcl4pyapi-0.1.8 → bcbvcl4pyapi-0.1.10}/src/BCBvcl4pyAPI.egg-info/top_level.txt +0 -0
  17. {bcbvcl4pyapi-0.1.8 → bcbvcl4pyapi-0.1.10}/src/Example/PyListTest.py +0 -0
  18. {bcbvcl4pyapi-0.1.8 → bcbvcl4pyapi-0.1.10}/src/Example/PyListTest2.py +0 -0
  19. {bcbvcl4pyapi-0.1.8 → bcbvcl4pyapi-0.1.10}/src/Example/TestHyperList.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: BCBvcl4pyAPI
3
- Version: 0.1.8
3
+ Version: 0.1.10
4
4
  Summary: BCBvcl4pyAPI Python package
5
5
  Author-email: James Lin <tylin123@ms27.hinet.net>
6
6
  License: Copyright (c) 2025 James Lin
@@ -30,9 +30,15 @@ License-File: LICENSE
30
30
  Requires-Dist: pymysql
31
31
  Dynamic: license-file
32
32
 
33
- #BCBvcl4pyAPI
33
+ #BCBvcl4pyAPI Classes
34
34
 
35
35
  ## History of version
36
+ Version 0.1.10: 2025/10/09<BR>
37
+ Fixed the error of not releasing native classes in TMrmoryStreamPI and TIniFileAPI-<Final>.
38
+
39
+ Version 0.1.9: 2025/10/09<BR>
40
+ Fixed the error of not releasing native classes in TMrmoryStreamPI and TIniFileAPI.
41
+
36
42
  Version 0.1.7a: 2025/10/09<BR>
37
43
  Fixed the error of not releasing native classes in TMrmoryStreamPI and TIniFileAPI.
38
44
 
@@ -1,6 +1,12 @@
1
- #BCBvcl4pyAPI
1
+ #BCBvcl4pyAPI Classes
2
2
 
3
3
  ## History of version
4
+ Version 0.1.10: 2025/10/09<BR>
5
+ Fixed the error of not releasing native classes in TMrmoryStreamPI and TIniFileAPI-<Final>.
6
+
7
+ Version 0.1.9: 2025/10/09<BR>
8
+ Fixed the error of not releasing native classes in TMrmoryStreamPI and TIniFileAPI.
9
+
4
10
  Version 0.1.7a: 2025/10/09<BR>
5
11
  Fixed the error of not releasing native classes in TMrmoryStreamPI and TIniFileAPI.
6
12
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "BCBvcl4pyAPI"
7
- version = "0.1.8"
7
+ version = "0.1.10"
8
8
  description = "BCBvcl4pyAPI Python package"
9
9
  authors = [
10
10
  { name="James Lin", email="tylin123@ms27.hinet.net" }
@@ -1,10 +1,12 @@
1
1
  from .BCBvcl4pyAPI import TStringList, TList, DynamicArray
2
2
  from .HyperDynamicArrayAPI import HyperDynamicArray
3
3
  from .AnsiStringAPI import AnsiString
4
+ from .TStreamAPI import TStream, TMemoryStream
5
+ from .TIniFileAPI import TIniFile
4
6
 
5
7
  __all__ = ["TStringList", "TList", "DynamicArray",
6
8
  "HyperDynamicArray",
7
9
  "AnsiString",
8
- "TMemoryStream",
10
+ "TStream", "TMemoryStream",
9
11
  "TIniFile"
10
12
  ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: BCBvcl4pyAPI
3
- Version: 0.1.8
3
+ Version: 0.1.10
4
4
  Summary: BCBvcl4pyAPI Python package
5
5
  Author-email: James Lin <tylin123@ms27.hinet.net>
6
6
  License: Copyright (c) 2025 James Lin
@@ -30,9 +30,15 @@ License-File: LICENSE
30
30
  Requires-Dist: pymysql
31
31
  Dynamic: license-file
32
32
 
33
- #BCBvcl4pyAPI
33
+ #BCBvcl4pyAPI Classes
34
34
 
35
35
  ## History of version
36
+ Version 0.1.10: 2025/10/09<BR>
37
+ Fixed the error of not releasing native classes in TMrmoryStreamPI and TIniFileAPI-<Final>.
38
+
39
+ Version 0.1.9: 2025/10/09<BR>
40
+ Fixed the error of not releasing native classes in TMrmoryStreamPI and TIniFileAPI.
41
+
36
42
  Version 0.1.7a: 2025/10/09<BR>
37
43
  Fixed the error of not releasing native classes in TMrmoryStreamPI and TIniFileAPI.
38
44
 
@@ -6,7 +6,7 @@ src/BCBvcl4pyAPI/AnsiStringAPI.py
6
6
  src/BCBvcl4pyAPI/BCBvcl4pyAPI.py
7
7
  src/BCBvcl4pyAPI/HyperDynamicArrayAPI.py
8
8
  src/BCBvcl4pyAPI/TIniFileAPI.py
9
- src/BCBvcl4pyAPI/TMemoryStream.py
9
+ src/BCBvcl4pyAPI/TStreamAPI.py
10
10
  src/BCBvcl4pyAPI/__init__.py
11
11
  src/BCBvcl4pyAPI.egg-info/PKG-INFO
12
12
  src/BCBvcl4pyAPI.egg-info/SOURCES.txt
File without changes
File without changes