-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
12 additions
and
12 deletions.
There are no files selected for viewing
Submodule dsp-app
updated
from cb674b to 1c0cbc
Submodule dsp-ingest
updated
36 files
Submodule dsp-meta
updated
28 files
+2 −2 | .github/dependabot.yml | |
+1 −1 | .github/release-please/manifest.json | |
+18 −0 | .github/workflows/publish-docs.yml | |
+11 −0 | .github/workflows/publish.yml | |
+6 −3 | .markdownlint.yml | |
+52 −0 | CHANGELOG.md | |
+368 −99 | Cargo.lock | |
+11 −11 | Cargo.toml | |
+985 −0 | data/json/kirchen-rom.json | |
+8 −2 | data/json/limc.json | |
+7 −1 | data/json/rich.json | |
+325 −0 | docs/data/current-datamodel.md | |
+0 −8 | docs/data/datamodel.md | |
+599 −0 | docs/data/provisional-datamodel.md | |
+0 −374 | docs/domain_model/datamodel.md | |
+0 −401 | docs/domain_model/domain-entities.puml | |
+0 −1 | docs/domain_model/domain-entities.svg | |
+0 −298 | docs/domain_model/example.json | |
+0 −231 | docs/domain_model/example.ttl | |
+0 −795 | docs/domain_model/real-world-example.json | |
+0 −1 | docs/domain_model/schema-metadata.json | |
+0 −621 | docs/domain_model/schema-metadata.shacl | |
+1 −1 | docs/index.md | |
+4 −3 | mkdocs.yml | |
+1 −0 | src/domain/model/draft_model.rs | |
+3 −4 | web-frontend/package.json | |
+1,152 −2,302 | web-frontend/yarn.lock | |
+4 −0 | yarn.lock |
Submodule dsp-tools
updated
14 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
# for DSP, API, APP, Ingest, see https://github.com/dasch-swiss/ops-deploy/blob/main/versions/RELEASE.json | ||
# for TOOLS, see https://github.com/dasch-swiss/dsp-tools/releases | ||
# for META, see https://github.com/dasch-swiss/dsp-meta/releases (NB: tags start with 'dsp-meta-') | ||
DSP := "2024.09.01" | ||
API := "v30.19.0" | ||
APP := "v11.20.4" | ||
TOOLS := "b3960a4ed6af60114927c71ff319cbac1798cc2a" | ||
INGEST := "v0.13.0" | ||
META := "dsp-meta-v2.3.0" | ||
# for META, see https://github.com/dasch-swiss/dsp-meta/tags (NB: tags start with 'dsp-meta-') | ||
DSP := "2024.11.01" | ||
API := "v30.21.0" | ||
APP := "v11.22.1" | ||
TOOLS := "v9.2.0" | ||
INGEST := "v0.14.1" | ||
META := "dsp-meta-v2.3.2" |