Skip to content

Commit 8984d9a

Browse files
authored
Prepare 0.14.0 release (#1065)
* Prepare 0.14.0 release This commit prepares the 0.14.0 release. It moves the release notes for the release into a separate directory and adds a prelude to the release notes. This should be the last commit to merge for the 0.14.0 release and after it merges that commit will be what is should be tagged as the 0.14.0 release. As part of this there are few small changes other changes being made. The release notes are update to have consistent formatting and wording, a missing universal function for `all_shortest_paths` is added, missing doc toctree entries are added, and the ahash version in the lock file is downgraded to 0.8.6 as 0.8.7 has an undocumented MSRV on Rust 1.72 when building for aarch64 CPU architectures which is incompatible with rustworkx's documented MSRV. * Move new release notes * New release note fixes
1 parent dcece27 commit 8984d9a

File tree

42 files changed

+143
-73
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+143
-73
lines changed

Cargo.lock

Lines changed: 34 additions & 42 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ repository = "https://github.com/Qiskit/rustworkx"
2424
license = "Apache-2.0"
2525

2626
[workspace.dependencies]
27-
ahash = "0.8.7"
27+
ahash = "0.8.6"
2828
fixedbitset = "0.4.2"
2929
hashbrown = { version = ">=0.13, <0.15", features = ["rayon"] }
3030
indexmap = { version = ">=1.9, <3", features = ["rayon"] }

docs/source/api/algorithm_functions/coloring.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ Coloring
1010
rustworkx.graph_bipartite_edge_color
1111
rustworkx.graph_greedy_edge_color
1212
rustworkx.graph_misra_gries_edge_color
13+
rustworkx.two_color

docs/source/api/algorithm_functions/connectivity_and_cycles.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,6 @@ Connectivity and Cycles
2525
rustworkx.all_pairs_all_simple_paths
2626
rustworkx.stoer_wagner_min_cut
2727
rustworkx.longest_simple_path
28+
rustworkx.is_bipartite
29+
rustworkx.isolates
30+
rustworkx.has_path

docs/source/api/algorithm_functions/dag_algorithms.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ DAG Algorithms
1212
rustworkx.dag_weighted_longest_path_length
1313
rustworkx.is_directed_acyclic_graph
1414
rustworkx.layers
15-
rustworkx.transitive_reduction
15+
rustworkx.transitive_reduction
16+
rustworkx.topological_generations

docs/source/api/algorithm_functions/shortest_paths.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,5 @@ Shortest Paths
2424
rustworkx.k_shortest_path_lengths
2525
rustworkx.num_shortest_paths_unweighted
2626
rustworkx.unweighted_average_shortest_path_length
27+
rustworkx.all_shortest_paths
28+
rustworkx.digraph_all_shortest_paths

docs/source/api/exceptions.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,5 @@ Exceptions
1515
rustworkx.visit.StopSearch
1616
rustworkx.visit.PruneSearch
1717
rustworkx.JSONSerializationError
18+
rustworkx.InvalidMapping
19+
rustworkx.GraphNotBipartite

docs/source/api/pydigraph_api_functions.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ the functions from the explicitly typed based on the data type.
3131
rustworkx.digraph_all_pairs_bellman_ford_shortest_paths
3232
rustworkx.digraph_all_pairs_bellman_ford_path_lengths
3333
rustworkx.digraph_k_shortest_path_lengths
34+
rustworkx.digraph_all_shortest_paths
3435
rustworkx.digraph_dfs_edges
3536
rustworkx.digraph_dfs_search
3637
rustworkx.digraph_find_cycle

docs/source/api/pygraph_api_functions.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ typed API based on the data type.
3131
rustworkx.graph_bellman_ford_shortest_path_lengths
3232
rustworkx.graph_all_pairs_bellman_ford_shortest_paths
3333
rustworkx.graph_all_pairs_bellman_ford_path_lengths
34+
rustworkx.graph_all_shortest_paths
3435
rustworkx.graph_dfs_edges
3536
rustworkx.graph_dfs_search
3637
rustworkx.graph_transitivity

releasenotes/notes/add-albert-graph-5a7d393e1fe18e9d.yaml renamed to releasenotes/notes/0.14/add-albert-graph-5a7d393e1fe18e9d.yaml

File renamed without changes.

0 commit comments

Comments
 (0)