From 666200469a69727ad529b4e99c490ff014c17272 Mon Sep 17 00:00:00 2001 From: Javier Arias Date: Mon, 6 May 2024 11:48:45 +0100 Subject: [PATCH 01/10] Apply linting --- thoth-app/src/component/work.rs | 12 ++++++--- thoth-app/src/models/mod.rs | 4 --- thoth-export-server/src/record.rs | 44 +++++++++++++++---------------- 3 files changed, 31 insertions(+), 29 deletions(-) diff --git a/thoth-app/src/component/work.rs b/thoth-app/src/component/work.rs index 94390c97f..214d988db 100644 --- a/thoth-app/src/component/work.rs +++ b/thoth-app/src/component/work.rs @@ -207,9 +207,15 @@ impl Component for WorkComponent { self.doi = self.work.doi.clone().unwrap_or_default().to_string(); self.imprint_id = self.work.imprint.imprint_id; self.work_type = self.work.work_type.clone(); - self.data.imprints = body.data.imprints.to_owned(); - self.data.work_types = body.data.work_types.enum_values.to_owned(); - self.data.work_statuses = body.data.work_statuses.enum_values.to_owned(); + body.data.imprints.clone_into(&mut self.data.imprints); + body.data + .work_types + .enum_values + .clone_into(&mut self.data.work_types); + body.data + .work_statuses + .enum_values + .clone_into(&mut self.data.work_statuses); // If user doesn't have permission to edit this object, redirect to dashboard if let Some(publishers) = diff --git a/thoth-app/src/models/mod.rs b/thoth-app/src/models/mod.rs index 8b0a2d44c..f1dfebbcc 100644 --- a/thoth-app/src/models/mod.rs +++ b/thoth-app/src/models/mod.rs @@ -121,10 +121,6 @@ pub trait ListString { const BULLET_SEPARATOR: &'static str = " • "; const COMMA_SEPARATOR: &'static str = ", "; - fn separated_list_item_bullet_small(&self) -> Html { - self.separated_list_item(true, Self::BULLET_SEPARATOR) - } - fn separated_list_item_comma(&self) -> Html { self.separated_list_item(false, Self::COMMA_SEPARATOR) } diff --git a/thoth-export-server/src/record.rs b/thoth-export-server/src/record.rs index 9b7d8c37a..85d0e4892 100644 --- a/thoth-export-server/src/record.rs +++ b/thoth-export-server/src/record.rs @@ -4,6 +4,7 @@ use paperclip::actix::web::HttpResponse; use paperclip::actix::OperationModifier; use paperclip::v2::models::{DefaultOperationRaw, Either, Response}; use paperclip::v2::schema::Apiv2Schema; +use std::fmt::Display; use std::str::FromStr; use thoth_client::Work; use thoth_errors::{ThothError, ThothResult}; @@ -285,28 +286,27 @@ impl FromStr for MetadataSpecification { } } -impl ToString for MetadataSpecification { - fn to_string(&self) -> String { - match self { - MetadataSpecification::Onix3Thoth(_) => "onix_3.0::thoth".to_string(), - MetadataSpecification::Onix3ProjectMuse(_) => "onix_3.0::project_muse".to_string(), - MetadataSpecification::Onix3Oapen(_) => "onix_3.0::oapen".to_string(), - MetadataSpecification::Onix3Jstor(_) => "onix_3.0::jstor".to_string(), - MetadataSpecification::Onix3GoogleBooks(_) => "onix_3.0::google_books".to_string(), - MetadataSpecification::Onix3Overdrive(_) => "onix_3.0::overdrive".to_string(), - MetadataSpecification::Onix21EbscoHost(_) => "onix_2.1::ebsco_host".to_string(), - MetadataSpecification::Onix21ProquestEbrary(_) => { - "onix_2.1::proquest_ebrary".to_string() - } - MetadataSpecification::CsvThoth(_) => "csv::thoth".to_string(), - MetadataSpecification::JsonThoth(_) => "json::thoth".to_string(), - MetadataSpecification::KbartOclc(_) => "kbart::oclc".to_string(), - MetadataSpecification::BibtexThoth(_) => "bibtex::thoth".to_string(), - MetadataSpecification::DoiDepositCrossref(_) => "doideposit::crossref".to_string(), - MetadataSpecification::Marc21RecordThoth(_) => "marc21record::thoth".to_string(), - MetadataSpecification::Marc21MarkupThoth(_) => "marc21markup::thoth".to_string(), - MetadataSpecification::Marc21XmlThoth(_) => "marc21xml::thoth".to_string(), - } +impl Display for MetadataSpecification { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + let str = match self { + MetadataSpecification::Onix3Thoth(_) => "onix_3.0::thoth", + MetadataSpecification::Onix3ProjectMuse(_) => "onix_3.0::project_muse", + MetadataSpecification::Onix3Oapen(_) => "onix_3.0::oapen", + MetadataSpecification::Onix3Jstor(_) => "onix_3.0::jstor", + MetadataSpecification::Onix3GoogleBooks(_) => "onix_3.0::google_books", + MetadataSpecification::Onix3Overdrive(_) => "onix_3.0::overdrive", + MetadataSpecification::Onix21EbscoHost(_) => "onix_2.1::ebsco_host", + MetadataSpecification::Onix21ProquestEbrary(_) => "onix_2.1::proquest_ebrary", + MetadataSpecification::CsvThoth(_) => "csv::thoth", + MetadataSpecification::JsonThoth(_) => "json::thoth", + MetadataSpecification::KbartOclc(_) => "kbart::oclc", + MetadataSpecification::BibtexThoth(_) => "bibtex::thoth", + MetadataSpecification::DoiDepositCrossref(_) => "doideposit::crossref", + MetadataSpecification::Marc21RecordThoth(_) => "marc21record::thoth", + MetadataSpecification::Marc21MarkupThoth(_) => "marc21markup::thoth", + MetadataSpecification::Marc21XmlThoth(_) => "marc21xml::thoth", + }; + write!(f, "{}", str) } } From bb262c460902d8612ddc52948b1a616208e817f3 Mon Sep 17 00:00:00 2001 From: Javier Arias Date: Mon, 6 May 2024 11:49:29 +0100 Subject: [PATCH 02/10] Upgrade rust 1.78.0 --- Dockerfile | 2 +- Dockerfile.dev | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5fabc028b..911d1e904 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG MUSL_IMAGE=clux/muslrust:1.77.2-stable +ARG MUSL_IMAGE=clux/muslrust:1.78.0-stable FROM ${MUSL_IMAGE} as build diff --git a/Dockerfile.dev b/Dockerfile.dev index 9f2ac2d13..881163402 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -1,4 +1,4 @@ -ARG RUST_VERSION=1.77.2 +ARG RUST_VERSION=1.78.0 FROM rust:${RUST_VERSION} From a5700ea223e9d652c5bf07af280ea7dd5be468fe Mon Sep 17 00:00:00 2001 From: Javier Arias Date: Mon, 6 May 2024 12:05:26 +0100 Subject: [PATCH 03/10] Display output of build scripts --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 984519939..22e24d6f9 100644 --- a/Makefile +++ b/Makefile @@ -45,7 +45,7 @@ docker-dev-db: docker-compose -f docker-compose.dev.yml up db build: - cargo build + cargo build -vv build-graphql-api: build From bc87620897b6e2027b27f85633820d568112da4f Mon Sep 17 00:00:00 2001 From: Javier Arias Date: Mon, 6 May 2024 12:23:26 +0100 Subject: [PATCH 04/10] Upgrade trunk --- Dockerfile.dev | 2 +- thoth-app-server/build.rs | 2 +- thoth-app/Trunk.toml | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile.dev b/Dockerfile.dev index 881163402..5fbfd2598 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -2,7 +2,7 @@ ARG RUST_VERSION=1.78.0 FROM rust:${RUST_VERSION} -ENV TRUNK_VERSION=0.18.8 +ENV TRUNK_VERSION=0.20.0 ARG THOTH_GRAPHQL_API=http://localhost:8000 ARG THOTH_EXPORT_API=http://localhost:8181 diff --git a/thoth-app-server/build.rs b/thoth-app-server/build.rs index 84d963acf..fb021bf91 100644 --- a/thoth-app-server/build.rs +++ b/thoth-app-server/build.rs @@ -2,7 +2,7 @@ use dotenv::dotenv; use std::env; use std::process::{exit, Command}; -const TRUNK_VERSION: &str = "0.19.2"; +const TRUNK_VERSION: &str = "0.20.0"; fn is_wasm_target_installed() -> bool { let output = Command::new("rustup") diff --git a/thoth-app/Trunk.toml b/thoth-app/Trunk.toml index f5c75869e..e9b1a5a8f 100644 --- a/thoth-app/Trunk.toml +++ b/thoth-app/Trunk.toml @@ -5,6 +5,8 @@ dist = "pkg" public_url = "/admin/" # Whether to include hash values in the output file names. filehash = false +# Control minification +minify = "on_release" # can be one of: never, on_release, always [clean] # The output dir for all final assets. From 4ae04891f7a642f6bf2bbe6d36aa4498074d6f2a Mon Sep 17 00:00:00 2001 From: Javier Arias Date: Mon, 6 May 2024 12:28:30 +0100 Subject: [PATCH 05/10] Update changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a875d6d9..6828ec273 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Changed + - Upgrade rust to `1.78.0` in production and development `Dockerfile` + - Upgrade `trunk` to v0.20.0 + - Added `-vv` option to build command in Makefile ## [[0.12.4]](https://github.com/thoth-pub/thoth/releases/tag/v0.12.4) - 2024-04-30 ### Changed From f70a777c743708ce058a2f1197eff165ce3b1c6a Mon Sep 17 00:00:00 2001 From: Javier Arias Date: Mon, 6 May 2024 12:30:56 +0100 Subject: [PATCH 06/10] Update changelog --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6828ec273..6aa60490a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Changed - - Upgrade rust to `1.78.0` in production and development `Dockerfile` - - Upgrade `trunk` to v0.20.0 - - Added `-vv` option to build command in Makefile + - [601](https://github.com/thoth-pub/thoth/pull/601) - Upgrade rust to `1.78.0` in production and development `Dockerfile` + - [601](https://github.com/thoth-pub/thoth/pull/601) - Upgrade `trunk` to v0.20.0 + - [601](https://github.com/thoth-pub/thoth/pull/601) - Added `-vv` option to build command in Makefile ## [[0.12.4]](https://github.com/thoth-pub/thoth/releases/tag/v0.12.4) - 2024-04-30 ### Changed From 9c9f912acde68a8c7af4758a005a4fb1bee2549c Mon Sep 17 00:00:00 2001 From: Javier Arias Date: Mon, 6 May 2024 12:38:51 +0100 Subject: [PATCH 07/10] Display output of build scripts in github actions --- .github/workflows/build_test_and_check.yml | 4 ++-- .github/workflows/run_migrations.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_test_and_check.yml b/.github/workflows/build_test_and_check.yml index 1fc0fff63..385d4dd47 100644 --- a/.github/workflows/build_test_and_check.yml +++ b/.github/workflows/build_test_and_check.yml @@ -34,13 +34,13 @@ jobs: steps: - uses: actions/checkout@v4 - name: Build binary - run: cargo build --verbose + run: cargo build -vv test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Run tests - run: cargo test --workspace --verbose + run: cargo test --workspace -vv lint: runs-on: ubuntu-latest steps: diff --git a/.github/workflows/run_migrations.yml b/.github/workflows/run_migrations.yml index 8bb9f52bf..07dceb3b0 100644 --- a/.github/workflows/run_migrations.yml +++ b/.github/workflows/run_migrations.yml @@ -42,7 +42,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Build binary - run: cargo build --verbose + run: cargo build -vv - name: Run migrations run: cargo run migrate - name: Revert migrations From 0f485fb918bf2a4d37e0c8448287f1c6d1bd061a Mon Sep 17 00:00:00 2001 From: Javier Arias Date: Mon, 6 May 2024 12:39:09 +0100 Subject: [PATCH 08/10] Update changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6aa60490a..0d3e088d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - [601](https://github.com/thoth-pub/thoth/pull/601) - Upgrade rust to `1.78.0` in production and development `Dockerfile` - [601](https://github.com/thoth-pub/thoth/pull/601) - Upgrade `trunk` to v0.20.0 - - [601](https://github.com/thoth-pub/thoth/pull/601) - Added `-vv` option to build command in Makefile + - [601](https://github.com/thoth-pub/thoth/pull/601) - Added `-vv` option to build command in Makefile and GitHub actions ## [[0.12.4]](https://github.com/thoth-pub/thoth/releases/tag/v0.12.4) - 2024-04-30 ### Changed From 14489a7b4b71a379bb6d126648984b7a134eb418 Mon Sep 17 00:00:00 2001 From: Javier Arias Date: Tue, 7 May 2024 10:33:51 +0100 Subject: [PATCH 09/10] Bump v0.12.5 --- Cargo.lock | 16 ++++++++-------- Cargo.toml | 12 ++++++------ thoth-api-server/Cargo.toml | 6 +++--- thoth-api/Cargo.toml | 4 ++-- thoth-app-server/Cargo.toml | 2 +- thoth-app/Cargo.toml | 6 +++--- thoth-client/Cargo.toml | 8 ++++---- thoth-errors/Cargo.toml | 2 +- thoth-export-server/Cargo.toml | 8 ++++---- 9 files changed, 32 insertions(+), 32 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c5799687f..b037780bd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3087,7 +3087,7 @@ dependencies = [ [[package]] name = "thoth" -version = "0.12.4" +version = "0.12.5" dependencies = [ "cargo-husky", "clap", @@ -3102,7 +3102,7 @@ dependencies = [ [[package]] name = "thoth-api" -version = "0.12.4" +version = "0.12.5" dependencies = [ "actix-web", "argon2rs", @@ -3131,7 +3131,7 @@ dependencies = [ [[package]] name = "thoth-api-server" -version = "0.12.4" +version = "0.12.5" dependencies = [ "actix-cors", "actix-identity", @@ -3147,7 +3147,7 @@ dependencies = [ [[package]] name = "thoth-app" -version = "0.12.4" +version = "0.12.5" dependencies = [ "anyhow", "chrono", @@ -3176,7 +3176,7 @@ dependencies = [ [[package]] name = "thoth-app-server" -version = "0.12.4" +version = "0.12.5" dependencies = [ "actix-cors", "actix-web", @@ -3186,7 +3186,7 @@ dependencies = [ [[package]] name = "thoth-client" -version = "0.12.4" +version = "0.12.5" dependencies = [ "chrono", "graphql_client", @@ -3202,7 +3202,7 @@ dependencies = [ [[package]] name = "thoth-errors" -version = "0.12.4" +version = "0.12.5" dependencies = [ "actix-web", "csv", @@ -3223,7 +3223,7 @@ dependencies = [ [[package]] name = "thoth-export-server" -version = "0.12.4" +version = "0.12.5" dependencies = [ "actix-cors", "actix-web", diff --git a/Cargo.toml b/Cargo.toml index 300c1c06b..5deb2a6da 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth" -version = "0.12.4" +version = "0.12.5" authors = ["Javier Arias ", "Ross Higman "] edition = "2021" license = "Apache-2.0" @@ -16,11 +16,11 @@ maintenance = { status = "actively-developed" } members = ["thoth-api", "thoth-api-server", "thoth-app", "thoth-app-server", "thoth-client", "thoth-errors", "thoth-export-server"] [dependencies] -thoth-api = { version = "=0.12.4", path = "thoth-api", features = ["backend"] } -thoth-api-server = { version = "=0.12.4", path = "thoth-api-server" } -thoth-app-server = { version = "=0.12.4", path = "thoth-app-server" } -thoth-errors = { version = "=0.12.4", path = "thoth-errors" } -thoth-export-server = { version = "=0.12.4", path = "thoth-export-server" } +thoth-api = { version = "=0.12.5", path = "thoth-api", features = ["backend"] } +thoth-api-server = { version = "=0.12.5", path = "thoth-api-server" } +thoth-app-server = { version = "=0.12.5", path = "thoth-app-server" } +thoth-errors = { version = "=0.12.5", path = "thoth-errors" } +thoth-export-server = { version = "=0.12.5", path = "thoth-export-server" } clap = { version = "4.4.7", features = ["cargo", "env"] } dialoguer = { version = "0.11.0", features = ["password"] } dotenv = "0.15.0" diff --git a/thoth-api-server/Cargo.toml b/thoth-api-server/Cargo.toml index e70f83260..c903130df 100644 --- a/thoth-api-server/Cargo.toml +++ b/thoth-api-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-api-server" -version = "0.12.4" +version = "0.12.5" authors = ["Javier Arias ", "Ross Higman "] edition = "2021" license = "Apache-2.0" @@ -9,8 +9,8 @@ repository = "https://github.com/thoth-pub/thoth" readme = "README.md" [dependencies] -thoth-api = { version = "=0.12.4", path = "../thoth-api", features = ["backend"] } -thoth-errors = { version = "=0.12.4", path = "../thoth-errors" } +thoth-api = { version = "=0.12.5", path = "../thoth-api", features = ["backend"] } +thoth-errors = { version = "=0.12.5", path = "../thoth-errors" } actix-web = "4.5.1" actix-cors = "0.7.0" actix-identity = "0.7.1" diff --git a/thoth-api/Cargo.toml b/thoth-api/Cargo.toml index 6724e10f0..36b499068 100644 --- a/thoth-api/Cargo.toml +++ b/thoth-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-api" -version = "0.12.4" +version = "0.12.5" authors = ["Javier Arias ", "Ross Higman "] edition = "2021" license = "Apache-2.0" @@ -16,7 +16,7 @@ maintenance = { status = "actively-developed" } backend = ["diesel", "diesel-derive-enum", "diesel_migrations", "futures", "actix-web", "jsonwebtoken"] [dependencies] -thoth-errors = { version = "=0.12.4", path = "../thoth-errors" } +thoth-errors = { version = "=0.12.5", path = "../thoth-errors" } actix-web = { version = "4.5.1", optional = true } argon2rs = "0.2.5" isbn2 = "0.4.0" diff --git a/thoth-app-server/Cargo.toml b/thoth-app-server/Cargo.toml index 802b57388..a6feef829 100644 --- a/thoth-app-server/Cargo.toml +++ b/thoth-app-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-app-server" -version = "0.12.4" +version = "0.12.5" authors = ["Javier Arias ", "Ross Higman "] edition = "2021" license = "Apache-2.0" diff --git a/thoth-app/Cargo.toml b/thoth-app/Cargo.toml index 07d0198ba..90a4bae36 100644 --- a/thoth-app/Cargo.toml +++ b/thoth-app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-app" -version = "0.12.4" +version = "0.12.5" authors = ["Javier Arias ", "Ross Higman "] edition = "2021" license = "Apache-2.0" @@ -36,8 +36,8 @@ uuid = { version = "0.8.2", features = ["serde", "v4"] } # `getrandom` is a dependency of `uuid`, we need to explicitly import and include the `js` feature to enable wasm # https://docs.rs/getrandom/latest/getrandom/#webassembly-support getrandom = { version = "0.2", features = ["js"] } -thoth-api = { version = "=0.12.4", path = "../thoth-api" } -thoth-errors = { version = "=0.12.4", path = "../thoth-errors" } +thoth-api = { version = "=0.12.5", path = "../thoth-api" } +thoth-errors = { version = "=0.12.5", path = "../thoth-errors" } [build-dependencies] dotenv = "0.15.0" diff --git a/thoth-client/Cargo.toml b/thoth-client/Cargo.toml index f0fc25a3b..55efd79e2 100644 --- a/thoth-client/Cargo.toml +++ b/thoth-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-client" -version = "0.12.4" +version = "0.12.5" authors = ["Javier Arias ", "Ross Higman "] edition = "2021" license = "Apache-2.0" @@ -10,8 +10,8 @@ readme = "README.md" build = "build.rs" [dependencies] -thoth-api = {version = "=0.12.4", path = "../thoth-api" } -thoth-errors = {version = "=0.12.4", path = "../thoth-errors" } +thoth-api = {version = "=0.12.5", path = "../thoth-api" } +thoth-errors = {version = "=0.12.5", path = "../thoth-errors" } graphql_client = "0.13.0" chrono = { version = "0.4.31", features = ["serde"] } reqwest = { version = "0.11", features = ["json"] } @@ -22,4 +22,4 @@ serde_json = "1.0" uuid = { version = "0.8.2", features = ["serde"] } [build-dependencies] -thoth-api = { version = "=0.12.4", path = "../thoth-api", features = ["backend"] } +thoth-api = { version = "=0.12.5", path = "../thoth-api", features = ["backend"] } diff --git a/thoth-errors/Cargo.toml b/thoth-errors/Cargo.toml index c8eb0669b..a52ead6ec 100644 --- a/thoth-errors/Cargo.toml +++ b/thoth-errors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-errors" -version = "0.12.4" +version = "0.12.5" authors = ["Javier Arias ", "Ross Higman "] edition = "2021" license = "Apache-2.0" diff --git a/thoth-export-server/Cargo.toml b/thoth-export-server/Cargo.toml index 55ab96576..227996987 100644 --- a/thoth-export-server/Cargo.toml +++ b/thoth-export-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-export-server" -version = "0.12.4" +version = "0.12.5" authors = ["Javier Arias ", "Ross Higman "] edition = "2021" license = "Apache-2.0" @@ -10,9 +10,9 @@ readme = "README.md" build = "build.rs" [dependencies] -thoth-api = { version = "=0.12.4", path = "../thoth-api" } -thoth-errors = { version = "=0.12.4", path = "../thoth-errors" } -thoth-client = { version = "=0.12.4", path = "../thoth-client" } +thoth-api = { version = "=0.12.5", path = "../thoth-api" } +thoth-errors = { version = "=0.12.5", path = "../thoth-errors" } +thoth-client = { version = "=0.12.5", path = "../thoth-client" } actix-web = "4.5.1" actix-cors = "0.7.0" cc_license = "0.1.0" From 3de5939c3e600fa616602b08c822ac8262a103ff Mon Sep 17 00:00:00 2001 From: Javier Arias Date: Tue, 7 May 2024 10:34:19 +0100 Subject: [PATCH 10/10] Update changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d3e088d1..756e7d74e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [[0.12.5]](https://github.com/thoth-pub/thoth/releases/tag/v0.12.5) - 2024-05-07 ### Changed - [601](https://github.com/thoth-pub/thoth/pull/601) - Upgrade rust to `1.78.0` in production and development `Dockerfile` - [601](https://github.com/thoth-pub/thoth/pull/601) - Upgrade `trunk` to v0.20.0