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
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ For the changes in the 3DBAG data set, see the [3DBAG release notes](https://doc

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [unreleased]
## [2025.09.03]

Release that produced the 3DBAG data set version 2025.09.03.

- **[#324](https://github.com/3DBAG/3dbag-pipeline/pull/324)** - Fix dagster concurrency: Refactored AHN LAZ file download concurrency management using Dagster's tag-based concurrency limits
- **[#316](https://github.com/3DBAG/3dbag-pipeline/pull/316)** - Updated Docker base images and improved projection data handling
Expand Down Expand Up @@ -39,6 +41,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Small bug fixes and typo corrections
- Configuration adjustments

### Docker images

The docker images for this release:
- `3dgi/3dbag-pipeline-dagster:2025.09.03`
- `3dgi/3dbag-pipeline-core:2025.09.03`
- `3dgi/3dbag-pipeline-floors-estimation:2025.09.03`
- `3dgi/3dbag-pipeline-party-walls:2025.09.03`

## [2024.12.16]

Release that produced the 3DBAG data set version 2024.12.16.
Expand Down
4 changes: 2 additions & 2 deletions packages/common/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "bag3d-common"
version = "2024.12.16"
version = "2025.09.03"
description = "Resources, functions and type definitions that are used by the 3D BAG packages that define the data processing workflows."
readme = "README.md"
requires-python = ">=3.11"
Expand Down Expand Up @@ -43,7 +43,7 @@ dev = [

[tool.uv.sources]
pgutils = { git = "https://github.com/balazsdukai/pgutils.git", rev = "2025.1015" }
bag3d-specs = { git = "https://github.com/3DBAG/3dbag-specs.git", branch = "develop" }
bag3d-specs = { git = "https://github.com/3DBAG/3dbag-specs.git", rev = "2025.09.03" }

[tool.pytest.ini_options]
filterwarnings = [
Expand Down
496 changes: 263 additions & 233 deletions packages/common/uv.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "bag3d-core"
version = "2024.12.16"
version = "2025.09.03"
description = "Workflow for producing the 3D BAG core data set"
readme = "README.md"
requires-python = ">=3.11"
Expand Down
497 changes: 264 additions & 233 deletions packages/core/uv.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/floors_estimation/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "bag3d-floors-estimation"
version = "2024.12.16"
version = "2025.09.03"
description = "Workflow for predicting the number of floors, based on Ellie Roy's thesis."
readme = "README.md"
requires-python = ">=3.11"
Expand Down
503 changes: 267 additions & 236 deletions packages/floors_estimation/uv.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/party_walls/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "bag3d-party-walls"
version = "2024.12.16"
version = "2025.09.03"
description = "Workflow for calculating the party walls in the 3D BAG."
readme = "README.md"
requires-python = ">=3.11"
Expand Down
499 changes: 265 additions & 234 deletions packages/party_walls/uv.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "3dbag-pipeline"
version = "2024.12.16"
version = "2025.09.03"
description = "Development requirements of the 3DBAG pipeline"
readme = "README.md"
requires-python = ">=3.11"
Expand Down Expand Up @@ -39,8 +39,8 @@ indent-style = "space"
docstring-code-format = false

[tool.bumpver]
current_version = "2024.12.16"
version_pattern = "YYYY.MM.DD"
current_version = "2025.09.03"
version_pattern = "YYYY.0M.0D"
commit_message = "bump version {old_version} -> {new_version}"
tag_message = "{new_version}"
tag_scope = "default"
Expand Down