Skip to content

Commit

Permalink
🗒️ Update Changelog, Version, and Website Copyright
Browse files Browse the repository at this point in the history
Pin `black` python version
  • Loading branch information
cbueth committed Feb 6, 2024
1 parent 24c96a3 commit 867d6de
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
uses: psf/black@stable
with:
src: './superblockify ./tests ./scripts'
options: '--target-version py310'

- uses: stefanzweifel/git-auto-commit-action@v4
with:
Expand Down
16 changes: 16 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@
Changelog
*********

Version 1.0.0 (2024-02-
**************************

* ✨ First major release ✨
* 📊 IO operations enhanced with graph reduction.
* 🗒️ Logging improvements: silenced numba compilation, reprojected debug messages.
* ⚙️ Parallelization updates: removed `num_workers` and `chunk_size`.
* 🧪 Testing updates: increased util coverage, added response 502 as `xfail`.
* 🆕 New features: Betweenness Centrality Cutoff, Reduced path filling.
* 🐛 Fixes: notebook formatting, GEOSException in tesselation, missing attribute.
* 🔄 Merged pull request: `🌐 Added Betweenness Centrality Cutoff
<https://github.com/cbueth/Superblockify/pull/82>`_.
* 📝 Misc changes: deactivated colormap logging,
unified nodes and edges into one variable.
* 📊 Improved analysis scripts

Version 0.2.2 (2023-06-27)
**************************

Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

project = "superblockify"
copyright = "2023, Carlson Büth"
copyright = "2023-2024, Carlson Büth"
author = "Carlson Büth"
release = "0.2.2"
release = "1.0.0"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down Expand Up @@ -54,7 +54,7 @@

myst_enable_extensions = ["colon_fence", "deflist", "dollarmath", "amsmath"]
myst_heading_anchors = 3
execution_timeout = 180
nb_execution_timeout = 180

# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
Expand Down
2 changes: 1 addition & 1 deletion superblockify/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""superblockify package version."""

__version__ = "0.2.2"
__version__ = "1.0.0"
2 changes: 1 addition & 1 deletion tests/partitioning/test_partitioning_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def test_split_up_isolated_edges_directed_higher_orders(
part.graph.add_edges_from(
[(u_id, v_id, -deg) for deg in range(0, degree - 2)]
+ [(v_id, u_id, -deg) for deg in range(0, degree - 2)],
**part.graph.edges[(u_id, v_id, 0)]
**part.graph.edges[(u_id, v_id, 0)],
)
num_edges, num_nodes = len(part.graph.edges), len(part.graph.nodes)
split_up_isolated_edges_directed(part.graph, part.sparsified)
Expand Down

0 comments on commit 867d6de

Please sign in to comment.