From 8524fa7aba7a715e21d10b956c87ba04f32f0544 Mon Sep 17 00:00:00 2001 From: Javier Arias Date: Mon, 24 Oct 2022 10:54:54 +0100 Subject: [PATCH 1/2] Update changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3107c9e1f..593985156 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.9.0]](https://github.com/thoth-pub/thoth/releases/tag/v0.9.0) - 2022-10-24 ### Added - [#333](https://github.com/thoth-pub/thoth/issues/333) - Add references to schema - Output references in Crossref DOI deposit From cb06134b8170624c2890820616c7b7c335a85ed3 Mon Sep 17 00:00:00 2001 From: Javier Arias Date: Mon, 24 Oct 2022 11:03:57 +0100 Subject: [PATCH 2/2] Bump v0.9.0 --- 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-app/manifest.json | 2 +- thoth-client/Cargo.toml | 6 +++--- thoth-errors/Cargo.toml | 2 +- thoth-export-server/Cargo.toml | 8 ++++---- 10 files changed, 32 insertions(+), 32 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ce9aff976..98e717ab7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3822,7 +3822,7 @@ dependencies = [ [[package]] name = "thoth" -version = "0.8.11" +version = "0.9.0" dependencies = [ "cargo-husky", "clap", @@ -3837,7 +3837,7 @@ dependencies = [ [[package]] name = "thoth-api" -version = "0.8.11" +version = "0.9.0" dependencies = [ "actix-web", "argon2rs", @@ -3866,7 +3866,7 @@ dependencies = [ [[package]] name = "thoth-api-server" -version = "0.8.11" +version = "0.9.0" dependencies = [ "actix-cors", "actix-identity", @@ -3881,7 +3881,7 @@ dependencies = [ [[package]] name = "thoth-app" -version = "0.8.11" +version = "0.9.0" dependencies = [ "anyhow", "chrono", @@ -3909,7 +3909,7 @@ dependencies = [ [[package]] name = "thoth-app-server" -version = "0.8.11" +version = "0.9.0" dependencies = [ "actix-cors", "actix-web", @@ -3918,7 +3918,7 @@ dependencies = [ [[package]] name = "thoth-client" -version = "0.8.11" +version = "0.9.0" dependencies = [ "chrono", "graphql_client", @@ -3932,7 +3932,7 @@ dependencies = [ [[package]] name = "thoth-errors" -version = "0.8.11" +version = "0.9.0" dependencies = [ "actix-web", "csv", @@ -3951,7 +3951,7 @@ dependencies = [ [[package]] name = "thoth-export-server" -version = "0.8.11" +version = "0.9.0" dependencies = [ "actix-cors", "actix-web", diff --git a/Cargo.toml b/Cargo.toml index 2586fff69..b17a73dbb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth" -version = "0.8.11" +version = "0.9.0" authors = ["Javier Arias ", "Ross Higman "] edition = "2018" 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.8.11", path = "thoth-api", features = ["backend"] } -thoth-api-server = { version = "0.8.11", path = "thoth-api-server" } -thoth-app-server = { version = "0.8.11", path = "thoth-app-server" } -thoth-errors = { version = "0.8.11", path = "thoth-errors" } -thoth-export-server = { version = "0.8.11", path = "thoth-export-server" } +thoth-api = { version = "0.9.0", path = "thoth-api", features = ["backend"] } +thoth-api-server = { version = "0.9.0", path = "thoth-api-server" } +thoth-app-server = { version = "0.9.0", path = "thoth-app-server" } +thoth-errors = { version = "0.9.0", path = "thoth-errors" } +thoth-export-server = { version = "0.9.0", path = "thoth-export-server" } clap = "2.33.3" dialoguer = "0.7.1" dotenv = "0.15.0" diff --git a/thoth-api-server/Cargo.toml b/thoth-api-server/Cargo.toml index 1d8c8496e..f637d855e 100644 --- a/thoth-api-server/Cargo.toml +++ b/thoth-api-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-api-server" -version = "0.8.11" +version = "0.9.0" authors = ["Javier Arias ", "Ross Higman "] edition = "2018" license = "Apache-2.0" @@ -9,8 +9,8 @@ repository = "https://github.com/thoth-pub/thoth" readme = "README.md" [dependencies] -thoth-api = { version = "0.8.11", path = "../thoth-api", features = ["backend"] } -thoth-errors = { version = "0.8.11", path = "../thoth-errors" } +thoth-api = { version = "0.9.0", path = "../thoth-api", features = ["backend"] } +thoth-errors = { version = "0.9.0", path = "../thoth-errors" } actix-web = "4.0.1" actix-cors = "0.6.0" actix-identity = "0.4.0" diff --git a/thoth-api/Cargo.toml b/thoth-api/Cargo.toml index b76cf9ae4..66fa5acf6 100644 --- a/thoth-api/Cargo.toml +++ b/thoth-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-api" -version = "0.8.11" +version = "0.9.0" authors = ["Javier Arias ", "Ross Higman "] edition = "2018" license = "Apache-2.0" @@ -16,7 +16,7 @@ maintenance = { status = "actively-developed" } backend = ["diesel", "diesel-derive-enum", "diesel_migrations", "futures", "actix-web"] [dependencies] -thoth-errors = { version = "0.8.11", path = "../thoth-errors" } +thoth-errors = { version = "0.9.0", path = "../thoth-errors" } actix-web = { version = "4.0.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 d7dc80eac..cffc2a03e 100644 --- a/thoth-app-server/Cargo.toml +++ b/thoth-app-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-app-server" -version = "0.8.11" +version = "0.9.0" authors = ["Javier Arias ", "Ross Higman "] edition = "2018" license = "Apache-2.0" diff --git a/thoth-app/Cargo.toml b/thoth-app/Cargo.toml index 26b7bcc24..8e587e91c 100644 --- a/thoth-app/Cargo.toml +++ b/thoth-app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-app" -version = "0.8.11" +version = "0.9.0" authors = ["Javier Arias ", "Ross Higman "] edition = "2018" license = "Apache-2.0" @@ -38,5 +38,5 @@ serde = { version = "1.0.115", features = ["derive"] } serde_json = "1.0" url = "2.1.1" uuid = { version = "0.7", features = ["serde", "v4"] } -thoth-api = { version = "0.8.11", path = "../thoth-api" } -thoth-errors = { version = "0.8.11", path = "../thoth-errors" } +thoth-api = { version = "0.9.0", path = "../thoth-api" } +thoth-errors = { version = "0.9.0", path = "../thoth-errors" } diff --git a/thoth-app/manifest.json b/thoth-app/manifest.json index 7158002ca..6a5879ecb 100644 --- a/thoth-app/manifest.json +++ b/thoth-app/manifest.json @@ -9,7 +9,7 @@ "start_url": "/?homescreen=1", "background_color": "#ffffff", "theme_color": "#ffdd57", - "version": "0.8.11", + "version": "0.9.0", "icons": [ { "src": "\/android-icon-36x36.png", diff --git a/thoth-client/Cargo.toml b/thoth-client/Cargo.toml index b4a3a5baa..33cb31cf9 100644 --- a/thoth-client/Cargo.toml +++ b/thoth-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-client" -version = "0.8.11" +version = "0.9.0" authors = ["Javier Arias ", "Ross Higman "] edition = "2018" license = "Apache-2.0" @@ -9,8 +9,8 @@ repository = "https://github.com/thoth-pub/thoth" readme = "README.md" [dependencies] -thoth-api = {version = "0.8.11", path = "../thoth-api" } -thoth-errors = {version = "0.8.11", path = "../thoth-errors" } +thoth-api = {version = "0.9.0", path = "../thoth-api" } +thoth-errors = {version = "0.9.0", path = "../thoth-errors" } graphql_client = "0.11.0" chrono = { version = "0.4", features = ["serde"] } reqwest = { version = "0.11", features = ["json"] } diff --git a/thoth-errors/Cargo.toml b/thoth-errors/Cargo.toml index ade0cd95f..c1e9a31cd 100644 --- a/thoth-errors/Cargo.toml +++ b/thoth-errors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-errors" -version = "0.8.11" +version = "0.9.0" authors = ["Javier Arias ", "Ross Higman "] edition = "2018" license = "Apache-2.0" diff --git a/thoth-export-server/Cargo.toml b/thoth-export-server/Cargo.toml index 46369de15..1d88279ae 100644 --- a/thoth-export-server/Cargo.toml +++ b/thoth-export-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-export-server" -version = "0.8.11" +version = "0.9.0" authors = ["Javier Arias ", "Ross Higman "] edition = "2018" license = "Apache-2.0" @@ -9,9 +9,9 @@ repository = "https://github.com/thoth-pub/thoth" readme = "README.md" [dependencies] -thoth-api = { version = "0.8.11", path = "../thoth-api" } -thoth-errors = { version = "0.8.11", path = "../thoth-errors" } -thoth-client = { version = "0.8.11", path = "../thoth-client" } +thoth-api = { version = "0.9.0", path = "../thoth-api" } +thoth-errors = { version = "0.9.0", path = "../thoth-errors" } +thoth-client = { version = "0.9.0", path = "../thoth-client" } actix-web = "4.0.1" actix-cors = "0.6.0" chrono = { version = "0.4", features = ["serde"] }