Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## 0.2.2 (2026-01-04)

### Added
- Added support for extracting additional node/edge attributes during graph reconstruction

### Changed
- N/A

### Fixed
- N/A

### Documentation
- Updated documents

## 0.2.1 (2025-12-29)

### Added
Expand Down
8 changes: 4 additions & 4 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ authors:
repository-code: "https://github.com/c2g-dev/city2graph"
url: "https://city2graph.net"
license: BSD-3-Clause
version: 0.2.1
date-released: 2025-12-29
version: 0.2.2
date-released: 2026-01-04
keywords:
- GeoAI
- Graph Neural Networks
Expand All @@ -40,6 +40,6 @@ preferred-citation:
family-names: Sato
email: y.sato@liverpool.ac.uk
affiliation: University of Liverpool
version: 0.2.1
version: 0.2.2
url: "https://github.com/c2g-dev/city2graph"
year: 2025
year: 2026
3 changes: 3 additions & 0 deletions docs/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
User-agent: *
Allow: /
Sitemap: https://city2graph.net/sitemap.xml
7 changes: 7 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@ extra_javascript:
# Plugins
plugins:
- search
- social
- git-revision-date-localized:
enable_creation_date: true
- minify:
minify_html: true
- rss
- autorefs # Enable cross-references to any Markdown heading

- mkdocstrings:
Expand Down Expand Up @@ -182,6 +188,7 @@ nav:
- Installation: installation.md
- Examples:
- Introduction: examples/index.md
- Metapath: examples/add_metapaths.ipynb
- Morphology: examples/morphological_graph_from_overturemaps.ipynb
- GTFS: examples/gtfs.ipynb
- OD Matrix: examples/generating_graphs_from_od_matrix.ipynb
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "city2graph"
version = "0.2.1"
version = "0.2.2"
description = "A Python library for Geospatial Graph Neural Networks and GeoAI for Urban Analytics with PyTorch Geometric. Convert geospatial data to graphs for spatiotemporal analysis, urban mobility studies, and more."
authors = [
{name = "Yuta Sato", email = "y.sato@liverpool.ac.uk"}
Expand Down Expand Up @@ -149,6 +149,9 @@ docs = [
"sphinxext-opengraph[social-cards] >=0.10.0",
"sphinx-plotly-directive",
"sphinx-sitemap",
"mkdocs-git-revision-date-localized-plugin",
"mkdocs-minify-plugin",
"mkdocs-rss-plugin",
"black",
]
dev = [
Expand Down
Loading