exonware-xwnode 0.0.1.23__py3-none-any.whl → 0.0.1.24__py3-none-any.whl

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 (75) hide show
  1. exonware/__init__.py +1 -1
  2. exonware/xwnode/__init__.py +1 -1
  3. exonware/xwnode/add_strategy_types.py +1 -1
  4. exonware/xwnode/common/__init__.py +1 -1
  5. exonware/xwnode/common/graph/__init__.py +1 -1
  6. exonware/xwnode/common/graph/caching.py +1 -1
  7. exonware/xwnode/common/graph/contracts.py +1 -1
  8. exonware/xwnode/common/graph/errors.py +1 -1
  9. exonware/xwnode/common/graph/indexing.py +1 -1
  10. exonware/xwnode/common/graph/manager.py +1 -1
  11. exonware/xwnode/common/management/__init__.py +1 -1
  12. exonware/xwnode/common/management/manager.py +1 -1
  13. exonware/xwnode/common/monitoring/__init__.py +1 -1
  14. exonware/xwnode/common/monitoring/metrics.py +1 -1
  15. exonware/xwnode/common/monitoring/pattern_detector.py +1 -1
  16. exonware/xwnode/common/monitoring/performance_monitor.py +1 -1
  17. exonware/xwnode/common/patterns/__init__.py +1 -1
  18. exonware/xwnode/common/patterns/flyweight.py +1 -1
  19. exonware/xwnode/common/utils/__init__.py +1 -1
  20. exonware/xwnode/edges/strategies/__init__.py +1 -1
  21. exonware/xwnode/edges/strategies/base.py +1 -1
  22. exonware/xwnode/edges/strategies/bitemporal.py +1 -1
  23. exonware/xwnode/edges/strategies/bv_graph.py +1 -1
  24. exonware/xwnode/edges/strategies/compressed_graph.py +1 -1
  25. exonware/xwnode/edges/strategies/edge_list.py +1 -1
  26. exonware/xwnode/edges/strategies/euler_tour.py +1 -1
  27. exonware/xwnode/edges/strategies/graphblas.py +1 -1
  28. exonware/xwnode/edges/strategies/hnsw.py +1 -1
  29. exonware/xwnode/edges/strategies/hop2_labels.py +1 -1
  30. exonware/xwnode/edges/strategies/incidence_matrix.py +1 -1
  31. exonware/xwnode/edges/strategies/k2_tree.py +1 -1
  32. exonware/xwnode/edges/strategies/link_cut.py +1 -1
  33. exonware/xwnode/edges/strategies/multiplex.py +1 -1
  34. exonware/xwnode/edges/strategies/roaring_adj.py +1 -1
  35. exonware/xwnode/facade.py +1 -1
  36. exonware/xwnode/nodes/strategies/__init__.py +1 -1
  37. exonware/xwnode/nodes/strategies/adjacency_list.py +1 -1
  38. exonware/xwnode/nodes/strategies/art.py +1 -1
  39. exonware/xwnode/nodes/strategies/base.py +1 -1
  40. exonware/xwnode/nodes/strategies/bloom_filter.py +1 -1
  41. exonware/xwnode/nodes/strategies/bloomier_filter.py +1 -1
  42. exonware/xwnode/nodes/strategies/bw_tree.py +1 -1
  43. exonware/xwnode/nodes/strategies/contracts.py +1 -1
  44. exonware/xwnode/nodes/strategies/cow_tree.py +1 -1
  45. exonware/xwnode/nodes/strategies/crdt_map.py +1 -1
  46. exonware/xwnode/nodes/strategies/data_interchange_optimized.py +1 -1
  47. exonware/xwnode/nodes/strategies/dawg.py +1 -1
  48. exonware/xwnode/nodes/strategies/deque.py +1 -1
  49. exonware/xwnode/nodes/strategies/extendible_hash.py +1 -1
  50. exonware/xwnode/nodes/strategies/hamt.py +1 -1
  51. exonware/xwnode/nodes/strategies/hash_map.py +1 -1
  52. exonware/xwnode/nodes/strategies/hopscotch_hash.py +1 -1
  53. exonware/xwnode/nodes/strategies/interval_tree.py +1 -1
  54. exonware/xwnode/nodes/strategies/kd_tree.py +1 -1
  55. exonware/xwnode/nodes/strategies/learned_index.py +1 -1
  56. exonware/xwnode/nodes/strategies/linear_hash.py +1 -1
  57. exonware/xwnode/nodes/strategies/lsm_tree.py +1 -1
  58. exonware/xwnode/nodes/strategies/masstree.py +1 -1
  59. exonware/xwnode/nodes/strategies/persistent_tree.py +1 -1
  60. exonware/xwnode/nodes/strategies/priority_queue.py +1 -1
  61. exonware/xwnode/nodes/strategies/queue.py +1 -1
  62. exonware/xwnode/nodes/strategies/roaring_bitmap.py +1 -1
  63. exonware/xwnode/nodes/strategies/rope.py +1 -1
  64. exonware/xwnode/nodes/strategies/sparse_matrix.py +1 -1
  65. exonware/xwnode/nodes/strategies/stack.py +1 -1
  66. exonware/xwnode/nodes/strategies/t_tree.py +1 -1
  67. exonware/xwnode/nodes/strategies/veb_tree.py +1 -1
  68. exonware/xwnode/strategies/__init__.py +1 -1
  69. exonware/xwnode/version.py +2 -2
  70. exonware_xwnode-0.0.1.24.dist-info/METADATA +900 -0
  71. exonware_xwnode-0.0.1.24.dist-info/RECORD +130 -0
  72. exonware_xwnode-0.0.1.23.dist-info/METADATA +0 -188
  73. exonware_xwnode-0.0.1.23.dist-info/RECORD +0 -130
  74. {exonware_xwnode-0.0.1.23.dist-info → exonware_xwnode-0.0.1.24.dist-info}/WHEEL +0 -0
  75. {exonware_xwnode-0.0.1.23.dist-info → exonware_xwnode-0.0.1.24.dist-info}/licenses/LICENSE +0 -0
@@ -15,7 +15,7 @@ Best Practices Implemented:
15
15
  Company: eXonware.com
16
16
  Author: Eng. Muhammad AlShehri
17
17
  Email: connect@exonware.com
18
- Version: 0.0.1.23
18
+ Version: 0.0.1.24
19
19
  Generation Date: October 12, 2025
20
20
  """
21
21
 
@@ -20,7 +20,7 @@ Best Practices Implemented:
20
20
  Company: eXonware.com
21
21
  Author: Eng. Muhammad AlShehri
22
22
  Email: connect@exonware.com
23
- Version: 0.0.1.23
23
+ Version: 0.0.1.24
24
24
  Generation Date: October 12, 2025
25
25
  """
26
26
 
@@ -6,7 +6,7 @@ T-Tree Node Strategy Implementation
6
6
  Company: eXonware.com
7
7
  Author: Eng. Muhammad AlShehri
8
8
  Email: connect@exonware.com
9
- Version: 0.0.1.23
9
+ Version: 0.0.1.24
10
10
  Generation Date: 11-Oct-2025
11
11
  """
12
12
 
@@ -9,7 +9,7 @@ on fixed-universe integer keys.
9
9
  Company: eXonware.com
10
10
  Author: Eng. Muhammad AlShehri
11
11
  Email: connect@exonware.com
12
- Version: 0.0.1.23
12
+ Version: 0.0.1.24
13
13
  Generation Date: 12-Oct-2025
14
14
  """
15
15
 
@@ -15,7 +15,7 @@ This package implements the enhanced strategy system with xwsystem-inspired opti
15
15
  Company: eXonware.com
16
16
  Author: Eng. Muhammad AlShehri
17
17
  Email: connect@exonware.com
18
- Version: 0.0.1.23
18
+ Version: 0.0.1.24
19
19
  Generation Date: 07-Sep-2025
20
20
  """
21
21
 
@@ -15,13 +15,13 @@ All version references should import from this module to ensure consistency.
15
15
  # =============================================================================
16
16
 
17
17
  # Main version - update this to change version across entire project
18
- __version__ = "0.0.1.23"
18
+ __version__ = "0.0.1.24"
19
19
 
20
20
  # Version components for programmatic access
21
21
  VERSION_MAJOR = 0
22
22
  VERSION_MINOR = 0
23
23
  VERSION_PATCH = 1
24
- VERSION_BUILD = 23# Set to None for releases, or build number for dev builds
24
+ VERSION_BUILD = 24# Set to None for releases, or build number for dev builds
25
25
 
26
26
  # Version metadata
27
27
  VERSION_SUFFIX = "" # e.g., "dev", "alpha", "beta", "rc1"