Skip to content

Commit 236826d

Browse files
committed
Merge remote-tracking branch 'origin/develop' into develop
2 parents ac5fcdc + 87f4d5b commit 236826d

File tree

8 files changed

+24
-7
lines changed

8 files changed

+24
-7
lines changed

.github/hooks/pre-commit

100644100755
File mode changed.

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@v4
2424
with:
25-
fetch-depth: 0
25+
ssh-key: ${{ secrets.DEPLOY_KEY }}
2626

2727
- name: Set up Python
2828
uses: actions/setup-python@v4

RELEASE_NOTES.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Release that produced the 3DBAG data set version 2024.12.16.
2+
3+
### Added
4+
- Documentation for deploying the 3dbag-pipeline, contributor guidelines and the project layout.
5+
- Docker-based deployment.
6+
- CI pipeline for testing and docker image builds.
7+
8+
### Changed
9+
- Major refactoring of the project structure for easier maintenance and deployment.
10+
11+
### Docker images
12+
13+
The docker images for this release:
14+
- `3dgi/3dbag-pipeline-dagster:2024.12.16`
15+
- `3dgi/3dbag-pipeline-core:2024.12.16`
16+
- `3dgi/3dbag-pipeline-floors-estimation:2024.12.16`
17+
- `3dgi/3dbag-pipeline-party-walls:2024.12.16`

packages/common/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "bag3d-common"
7-
version = "2024.12.15"
7+
version = "2024.12.16"
88
description = "Resources, functions and type definitions that are used by the 3D BAG packages that define the data processing workflows."
99
readme = "README.md"
1010
requires-python = ">=3.11"

packages/core/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "bag3d-core"
7-
version = "2024.12.15"
7+
version = "2024.12.16"
88
description = "Workflow for producing the 3D BAG core data set"
99
readme = "README.md"
1010
requires-python = ">=3.11"

packages/floors_estimation/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "bag3d-floors-estimation"
7-
version = "2024.12.15"
7+
version = "2024.12.16"
88
description = "Workflow for predicting the number of floors, based on Ellie Roy's thesis."
99
readme = "README.md"
1010
requires-python = ">=3.11"

packages/party_walls/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "bag3d-party-walls"
7-
version = "2024.12.15"
7+
version = "2024.12.16"
88
description = "Workflow for calculating the party walls in the 3D BAG."
99
readme = "README.md"
1010
requires-python = ">=3.11"

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "3dbag-pipeline"
3-
version = "2024.12.15"
3+
version = "2024.12.16"
44
description = "Development requirements of the 3DBAG pipeline"
55
readme = "README.md"
66
requires-python = ">=3.11"
@@ -43,7 +43,7 @@ indent-style = "space"
4343
docstring-code-format = false
4444

4545
[tool.bumpver]
46-
current_version = "2024.12.15"
46+
current_version = "2024.12.16"
4747
version_pattern = "YYYY.MM.DD"
4848
commit_message = "bump version {old_version} -> {new_version}"
4949
tag_message = "{new_version}"

0 commit comments

Comments
 (0)