Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
danielasubotic committed Nov 8, 2024
2 parents ff52d83 + 08166b3 commit 52a0604
Show file tree
Hide file tree
Showing 8 changed files with 148 additions and 58 deletions.
2 changes: 1 addition & 1 deletion .github/release-please/manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "2.3.0"
".": "2.3.1"
}
18 changes: 18 additions & 0 deletions .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: publish docs

on:
push:
branches:
- main

jobs:
publish-docs:
name: Publish Docs to Github Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Deploy docs
uses: mhausenblas/mkdocs-deploy-gh-pages@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REQUIREMENTS: docs/requirements.txt
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
# Changelog

## [2.3.1](https://github.com/dasch-swiss/dsp-meta/compare/dsp-meta-v2.3.0...dsp-meta-v2.3.1) (2024-10-21)


### Maintenances

* Add Google space notifications ([#259](https://github.com/dasch-swiss/dsp-meta/issues/259)) ([ab0c594](https://github.com/dasch-swiss/dsp-meta/commit/ab0c594ac0d61f711e23df9ad1bf0b802c5e7ccb))
* **deps-dev:** Bump prettier-plugin-svelte from 3.2.6 to 3.2.7 in /web-frontend in the frontend-dependencies group ([#257](https://github.com/dasch-swiss/dsp-meta/issues/257)) ([0745435](https://github.com/dasch-swiss/dsp-meta/commit/07454354c11927d58b235d15372f02925e2d7052))
* **deps:** Bump clap from 4.5.19 to 4.5.20 in the backend-dependencies group ([#265](https://github.com/dasch-swiss/dsp-meta/issues/265)) ([f214bad](https://github.com/dasch-swiss/dsp-meta/commit/f214bade54063c2c16167442619622315a181129))
* **deps:** Bump the backend-dependencies group with 2 updates ([#258](https://github.com/dasch-swiss/dsp-meta/issues/258)) ([ba0db14](https://github.com/dasch-swiss/dsp-meta/commit/ba0db14048ca6753fa21141a69d6c2aaed164a8b))
* **deps:** Bump the backend-dependencies group with 3 updates ([#260](https://github.com/dasch-swiss/dsp-meta/issues/260)) ([a832190](https://github.com/dasch-swiss/dsp-meta/commit/a8321902afe6461fd362073d18d9bedf69bedf19))
* **deps:** Bump the backend-dependencies group with 3 updates ([#262](https://github.com/dasch-swiss/dsp-meta/issues/262)) ([f53811f](https://github.com/dasch-swiss/dsp-meta/commit/f53811f639d721c5d7d675f1aa671e5be9f8a17a))
* **deps:** Bump the backend-dependencies group with 3 updates ([#268](https://github.com/dasch-swiss/dsp-meta/issues/268)) ([58edf4b](https://github.com/dasch-swiss/dsp-meta/commit/58edf4bd2fe1c95226b2261fe7d06178e7943adb))
* Fix Dependabot prefix ([#251](https://github.com/dasch-swiss/dsp-meta/issues/251)) ([9783e60](https://github.com/dasch-swiss/dsp-meta/commit/9783e60f5fb84f5a46a2da13e2a40e5a4188fe93))
* Remove packageManager ([#266](https://github.com/dasch-swiss/dsp-meta/issues/266)) ([838d766](https://github.com/dasch-swiss/dsp-meta/commit/838d766f02dd1e9519047fa3f5e400c0ddddbb0b))


### Project Data

* Add dsp app link from limc to meta ([#270](https://github.com/dasch-swiss/dsp-meta/issues/270)) ([da61d8f](https://github.com/dasch-swiss/dsp-meta/commit/da61d8f96eccd06d224232fc2dfc0058c743ba35))
* Add metadata kirchen-rom ([#267](https://github.com/dasch-swiss/dsp-meta/issues/267)) ([63cce29](https://github.com/dasch-swiss/dsp-meta/commit/63cce294ba96632a2c327e1d8fbb99ab30365a1e))


### Documentation

* Add up-to-date documentation and remove legacy documentation (DEV-4229) ([#263](https://github.com/dasch-swiss/dsp-meta/issues/263)) ([88b2234](https://github.com/dasch-swiss/dsp-meta/commit/88b22346180db079880455a57d629a9b7d2d4e1c))


### Bug Fixes

* Display the secondaryURL (DEV-4253) ([#269](https://github.com/dasch-swiss/dsp-meta/issues/269)) ([20d9c05](https://github.com/dasch-swiss/dsp-meta/commit/20d9c0532ad198960cb683f79661b7bca8510a86))

## [2.3.0](https://github.com/dasch-swiss/dsp-meta/compare/dsp-meta-v2.2.5...dsp-meta-v2.3.0) (2024-09-25)


Expand Down
125 changes: 80 additions & 45 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dsp-meta"
version = "2.3.0"
version = "2.3.1"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/dasch-swiss/dsp-meta"
Expand All @@ -16,7 +16,7 @@ async-trait = "0.1.83"
axum = "0.7.7" # web framework
axum-macros = "0.4.2"
clap = { version = "4.5.20", features = ["derive"] } # command-line parser
config = "0.14.0" # Layered configuration with strong support for 12-factor applications
config = "0.14.1" # Layered configuration with strong support for 12-factor applications
chrono = { version = "0.4.38", features = ["serde"] }
dirs = "5.0.1" # provides platform-specific locations for storing user configuration
http-body-util = "0.1.0"
Expand All @@ -33,9 +33,9 @@ tokio = { version = "1", features = ["rt", "macros", "rt-multi-thread"] }
tokio-test = "0.4.4"
tower = "0.5.1"
tower-http = { version = "0.6.1", features = ["trace", "fs", "cors"] }
hyper = "1.4.1"
regex = "1.11.0"
thiserror = "1.0.64"
hyper = "1.5.0"
regex = "1.11.1"
thiserror = "1.0.67"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = [
"fmt",
Expand Down
Loading

0 comments on commit 52a0604

Please sign in to comment.