From 3ae7b2ff652ae1e6f0fd9246147a8cf0aa785aa3 Mon Sep 17 00:00:00 2001 From: DaSCH Bot <50987250+daschbot@users.noreply.github.com> Date: Mon, 29 Jul 2024 18:03:02 +0200 Subject: [PATCH] chore: release main --- .github/release-please/manifest.json | 6 +++--- Cargo.lock | 6 +++--- dsp-domain/CHANGELOG.md | 12 ++++++++++++ dsp-domain/Cargo.toml | 2 +- dsp-meta-cmd/CHANGELOG.md | 4 ++++ dsp-meta-cmd/Cargo.toml | 4 ++-- dsp-meta/CHANGELOG.md | 23 +++++++++++++++++++++++ dsp-meta/Cargo.toml | 4 ++-- 8 files changed, 50 insertions(+), 11 deletions(-) diff --git a/.github/release-please/manifest.json b/.github/release-please/manifest.json index 007cff00..bd1b39dd 100644 --- a/.github/release-please/manifest.json +++ b/.github/release-please/manifest.json @@ -1,5 +1,5 @@ { - "dsp-domain": "0.1.3", - "dsp-meta": "0.1.3", - "dsp-meta-cmd": "0.1.3" + "dsp-domain": "0.1.4", + "dsp-meta": "0.1.4", + "dsp-meta-cmd": "2.0.1" } diff --git a/Cargo.lock b/Cargo.lock index cbe18fca..ddac12c6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -505,7 +505,7 @@ checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" [[package]] name = "dsp-domain" -version = "2.0.0" +version = "0.1.4" dependencies = [ "anyhow", "assert_cmd", @@ -529,7 +529,7 @@ dependencies = [ [[package]] name = "dsp-meta" -version = "0.1.3" +version = "0.1.4" dependencies = [ "anyhow", "assert_cmd", @@ -564,7 +564,7 @@ dependencies = [ [[package]] name = "dsp-meta-cmd" -version = "2.0.0" +version = "2.0.1" dependencies = [ "anyhow", "assert_cmd", diff --git a/dsp-domain/CHANGELOG.md b/dsp-domain/CHANGELOG.md index 89c3527f..891a755c 100644 --- a/dsp-domain/CHANGELOG.md +++ b/dsp-domain/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.1.4](https://github.com/dasch-swiss/dsp-meta/compare/dsp-domain-v0.1.3...dsp-domain-v0.1.4) (2024-07-29) + + +### Features + +* Add and serve old frontend ([#92](https://github.com/dasch-swiss/dsp-meta/issues/92)) ([00fd892](https://github.com/dasch-swiss/dsp-meta/commit/00fd892d4d1553e29c274d83c6bdc06b0e249253)) +* Add draft json schema validation and serde model ([#144](https://github.com/dasch-swiss/dsp-meta/issues/144)) ([df7948b](https://github.com/dasch-swiss/dsp-meta/commit/df7948b1fc5a411f064dbaa9657875405a551706)) +* Add grant domain model and deserialization ([#121](https://github.com/dasch-swiss/dsp-meta/issues/121)) ([f4a6162](https://github.com/dasch-swiss/dsp-meta/commit/f4a61623b3b640f8a8b1bd85969ea01ab9b3b056)) +* Extend dataset domain model ([#85](https://github.com/dasch-swiss/dsp-meta/issues/85)) ([f564ff6](https://github.com/dasch-swiss/dsp-meta/commit/f564ff6a5dedd2a4a4e464c568b7acb2eba15033)) +* Extend dataset domain model and a bit of deserialization (ongoing) ([#113](https://github.com/dasch-swiss/dsp-meta/issues/113)) ([070a729](https://github.com/dasch-swiss/dsp-meta/commit/070a7290a65a266e8d9c7284b7af3733c64cd490)) +* Extend dataset domain model and deserialization (ongoing) ([#115](https://github.com/dasch-swiss/dsp-meta/issues/115)) ([4264c72](https://github.com/dasch-swiss/dsp-meta/commit/4264c721cd80c889175331263b591a94c999b465)) + ## [0.1.3](https://github.com/dasch-swiss/dsp-meta/compare/dsp-domain-v0.1.2...dsp-domain-v0.1.3) (2023-12-04) diff --git a/dsp-domain/Cargo.toml b/dsp-domain/Cargo.toml index 3bd3183e..5f9be34b 100644 --- a/dsp-domain/Cargo.toml +++ b/dsp-domain/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dsp-domain" -version = "2.0.0" +version = "0.1.4" edition.workspace = true license.workspace = true homepage.workspace = true diff --git a/dsp-meta-cmd/CHANGELOG.md b/dsp-meta-cmd/CHANGELOG.md index 240dd075..72c78cf3 100644 --- a/dsp-meta-cmd/CHANGELOG.md +++ b/dsp-meta-cmd/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +* The following workspace dependencies were updated + * dependencies + * dsp-meta bumped from 0.1.3 to 0.1.4 + ## [0.1.3](https://github.com/dasch-swiss/dsp-meta/compare/dsp-meta-cli-v0.1.2...dsp-meta-cli-v0.1.3) (2023-12-04) diff --git a/dsp-meta-cmd/Cargo.toml b/dsp-meta-cmd/Cargo.toml index 091992a5..119b903a 100644 --- a/dsp-meta-cmd/Cargo.toml +++ b/dsp-meta-cmd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dsp-meta-cmd" -version = "2.0.0" +version = "2.0.1" edition.workspace = true license.workspace = true homepage.workspace = true @@ -13,7 +13,7 @@ authors.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -dsp-meta = { path = "../dsp-meta", version = "0.1.3" } +dsp-meta = { path = "../dsp-meta", version = "0.1.4" } anyhow.workspace = true axum.workspace = true axum-macros.workspace = true diff --git a/dsp-meta/CHANGELOG.md b/dsp-meta/CHANGELOG.md index e944a6d4..f220a6bb 100644 --- a/dsp-meta/CHANGELOG.md +++ b/dsp-meta/CHANGELOG.md @@ -1,5 +1,28 @@ # Changelog +## [0.1.4](https://github.com/dasch-swiss/dsp-meta/compare/dsp-meta-v0.1.3...dsp-meta-v0.1.4) (2024-07-29) + + +### Features + +* Add and serve old frontend ([#92](https://github.com/dasch-swiss/dsp-meta/issues/92)) ([00fd892](https://github.com/dasch-swiss/dsp-meta/commit/00fd892d4d1553e29c274d83c6bdc06b0e249253)) +* Add and serve old frontend ([#93](https://github.com/dasch-swiss/dsp-meta/issues/93)) ([3058175](https://github.com/dasch-swiss/dsp-meta/commit/30581753c734a26acf262619709280d35fe97d5b)) +* Add draft json schema validation and serde model ([#144](https://github.com/dasch-swiss/dsp-meta/issues/144)) ([df7948b](https://github.com/dasch-swiss/dsp-meta/commit/df7948b1fc5a411f064dbaa9657875405a551706)) +* Add grant domain model and deserialization ([#121](https://github.com/dasch-swiss/dsp-meta/issues/121)) ([f4a6162](https://github.com/dasch-swiss/dsp-meta/commit/f4a61623b3b640f8a8b1bd85969ea01ab9b3b056)) +* Add robots.txt and sitemap.xml (DEV-3931) ([#152](https://github.com/dasch-swiss/dsp-meta/issues/152)) ([6dceb9e](https://github.com/dasch-swiss/dsp-meta/commit/6dceb9e32776f1678bfb10c144b87d1bba25c0ea)) +* Expose validation command ([#88](https://github.com/dasch-swiss/dsp-meta/issues/88)) ([aa6dd91](https://github.com/dasch-swiss/dsp-meta/commit/aa6dd91f6b654b5770521735387c93d52fa50f66)) +* Extend dataset domain model ([#85](https://github.com/dasch-swiss/dsp-meta/issues/85)) ([f564ff6](https://github.com/dasch-swiss/dsp-meta/commit/f564ff6a5dedd2a4a4e464c568b7acb2eba15033)) +* Extend dataset domain model and a bit of deserialization (ongoing) ([#113](https://github.com/dasch-swiss/dsp-meta/issues/113)) ([070a729](https://github.com/dasch-swiss/dsp-meta/commit/070a7290a65a266e8d9c7284b7af3733c64cd490)) +* Extend dataset domain model and deserialization (ongoing) ([#115](https://github.com/dasch-swiss/dsp-meta/issues/115)) ([4264c72](https://github.com/dasch-swiss/dsp-meta/commit/4264c721cd80c889175331263b591a94c999b465)) +* Make service work with json (DEV-3930) ([#146](https://github.com/dasch-swiss/dsp-meta/issues/146)) ([184c710](https://github.com/dasch-swiss/dsp-meta/commit/184c71031595885389cd045375213b81ac09b00b)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * dsp-domain bumped from 2.0.0 to 0.1.4 + ## [0.1.3](https://github.com/dasch-swiss/dsp-meta/compare/dsp-meta-v0.1.2...dsp-meta-v0.1.3) (2023-12-04) diff --git a/dsp-meta/Cargo.toml b/dsp-meta/Cargo.toml index b2058bdc..457fab6a 100644 --- a/dsp-meta/Cargo.toml +++ b/dsp-meta/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dsp-meta" -version = "0.1.3" +version = "0.1.4" edition.workspace = true license.workspace = true homepage.workspace = true @@ -13,7 +13,7 @@ authors.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -dsp-domain = { path = "../dsp-domain", version = "2.0.0" } +dsp-domain = { path = "../dsp-domain", version = "0.1.4" } anyhow.workspace = true axum.workspace = true axum-macros.workspace = true