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.
- exonware/__init__.py +1 -1
- exonware/xwnode/__init__.py +1 -1
- exonware/xwnode/add_strategy_types.py +1 -1
- exonware/xwnode/common/__init__.py +1 -1
- exonware/xwnode/common/graph/__init__.py +1 -1
- exonware/xwnode/common/graph/caching.py +1 -1
- exonware/xwnode/common/graph/contracts.py +1 -1
- exonware/xwnode/common/graph/errors.py +1 -1
- exonware/xwnode/common/graph/indexing.py +1 -1
- exonware/xwnode/common/graph/manager.py +1 -1
- exonware/xwnode/common/management/__init__.py +1 -1
- exonware/xwnode/common/management/manager.py +1 -1
- exonware/xwnode/common/monitoring/__init__.py +1 -1
- exonware/xwnode/common/monitoring/metrics.py +1 -1
- exonware/xwnode/common/monitoring/pattern_detector.py +1 -1
- exonware/xwnode/common/monitoring/performance_monitor.py +1 -1
- exonware/xwnode/common/patterns/__init__.py +1 -1
- exonware/xwnode/common/patterns/flyweight.py +1 -1
- exonware/xwnode/common/utils/__init__.py +1 -1
- exonware/xwnode/edges/strategies/__init__.py +1 -1
- exonware/xwnode/edges/strategies/base.py +1 -1
- exonware/xwnode/edges/strategies/bitemporal.py +1 -1
- exonware/xwnode/edges/strategies/bv_graph.py +1 -1
- exonware/xwnode/edges/strategies/compressed_graph.py +1 -1
- exonware/xwnode/edges/strategies/edge_list.py +1 -1
- exonware/xwnode/edges/strategies/euler_tour.py +1 -1
- exonware/xwnode/edges/strategies/graphblas.py +1 -1
- exonware/xwnode/edges/strategies/hnsw.py +1 -1
- exonware/xwnode/edges/strategies/hop2_labels.py +1 -1
- exonware/xwnode/edges/strategies/incidence_matrix.py +1 -1
- exonware/xwnode/edges/strategies/k2_tree.py +1 -1
- exonware/xwnode/edges/strategies/link_cut.py +1 -1
- exonware/xwnode/edges/strategies/multiplex.py +1 -1
- exonware/xwnode/edges/strategies/roaring_adj.py +1 -1
- exonware/xwnode/facade.py +1 -1
- exonware/xwnode/nodes/strategies/__init__.py +1 -1
- exonware/xwnode/nodes/strategies/adjacency_list.py +1 -1
- exonware/xwnode/nodes/strategies/art.py +1 -1
- exonware/xwnode/nodes/strategies/base.py +1 -1
- exonware/xwnode/nodes/strategies/bloom_filter.py +1 -1
- exonware/xwnode/nodes/strategies/bloomier_filter.py +1 -1
- exonware/xwnode/nodes/strategies/bw_tree.py +1 -1
- exonware/xwnode/nodes/strategies/contracts.py +1 -1
- exonware/xwnode/nodes/strategies/cow_tree.py +1 -1
- exonware/xwnode/nodes/strategies/crdt_map.py +1 -1
- exonware/xwnode/nodes/strategies/data_interchange_optimized.py +1 -1
- exonware/xwnode/nodes/strategies/dawg.py +1 -1
- exonware/xwnode/nodes/strategies/deque.py +1 -1
- exonware/xwnode/nodes/strategies/extendible_hash.py +1 -1
- exonware/xwnode/nodes/strategies/hamt.py +1 -1
- exonware/xwnode/nodes/strategies/hash_map.py +1 -1
- exonware/xwnode/nodes/strategies/hopscotch_hash.py +1 -1
- exonware/xwnode/nodes/strategies/interval_tree.py +1 -1
- exonware/xwnode/nodes/strategies/kd_tree.py +1 -1
- exonware/xwnode/nodes/strategies/learned_index.py +1 -1
- exonware/xwnode/nodes/strategies/linear_hash.py +1 -1
- exonware/xwnode/nodes/strategies/lsm_tree.py +1 -1
- exonware/xwnode/nodes/strategies/masstree.py +1 -1
- exonware/xwnode/nodes/strategies/persistent_tree.py +1 -1
- exonware/xwnode/nodes/strategies/priority_queue.py +1 -1
- exonware/xwnode/nodes/strategies/queue.py +1 -1
- exonware/xwnode/nodes/strategies/roaring_bitmap.py +1 -1
- exonware/xwnode/nodes/strategies/rope.py +1 -1
- exonware/xwnode/nodes/strategies/sparse_matrix.py +1 -1
- exonware/xwnode/nodes/strategies/stack.py +1 -1
- exonware/xwnode/nodes/strategies/t_tree.py +1 -1
- exonware/xwnode/nodes/strategies/veb_tree.py +1 -1
- exonware/xwnode/strategies/__init__.py +1 -1
- exonware/xwnode/version.py +2 -2
- exonware_xwnode-0.0.1.24.dist-info/METADATA +900 -0
- exonware_xwnode-0.0.1.24.dist-info/RECORD +130 -0
- exonware_xwnode-0.0.1.23.dist-info/METADATA +0 -188
- exonware_xwnode-0.0.1.23.dist-info/RECORD +0 -130
- {exonware_xwnode-0.0.1.23.dist-info → exonware_xwnode-0.0.1.24.dist-info}/WHEEL +0 -0
- {exonware_xwnode-0.0.1.23.dist-info → exonware_xwnode-0.0.1.24.dist-info}/licenses/LICENSE +0 -0
exonware/xwnode/version.py
CHANGED
@@ -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.
|
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 =
|
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"
|