diff --git a/Cargo.lock b/Cargo.lock index 9d44ab8e8..7e58d9d4c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3936,7 +3936,7 @@ dependencies = [ [[package]] name = "thoth" -version = "0.6.0" +version = "0.6.1" dependencies = [ "cargo-husky", "clap", @@ -3951,7 +3951,7 @@ dependencies = [ [[package]] name = "thoth-api" -version = "0.6.0" +version = "0.6.1" dependencies = [ "actix-web", "argon2rs", @@ -3980,7 +3980,7 @@ dependencies = [ [[package]] name = "thoth-api-server" -version = "0.6.0" +version = "0.6.1" dependencies = [ "actix-cors", "actix-identity", @@ -3995,7 +3995,7 @@ dependencies = [ [[package]] name = "thoth-app" -version = "0.6.0" +version = "0.6.1" dependencies = [ "anyhow", "chrono", @@ -4018,7 +4018,7 @@ dependencies = [ [[package]] name = "thoth-app-server" -version = "0.6.0" +version = "0.6.1" dependencies = [ "actix-cors", "actix-web", @@ -4027,7 +4027,7 @@ dependencies = [ [[package]] name = "thoth-client" -version = "0.6.0" +version = "0.6.1" dependencies = [ "chrono", "graphql_client", @@ -4041,7 +4041,7 @@ dependencies = [ [[package]] name = "thoth-errors" -version = "0.6.0" +version = "0.6.1" dependencies = [ "actix-web", "csv", @@ -4056,7 +4056,7 @@ dependencies = [ [[package]] name = "thoth-export-server" -version = "0.6.0" +version = "0.6.1" dependencies = [ "actix-cors", "actix-web", diff --git a/Cargo.toml b/Cargo.toml index b09586174..6f5a50de9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth" -version = "0.6.0" +version = "0.6.1" 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.6.0", path = "thoth-api", features = ["backend"] } -thoth-api-server = { version = "0.6.0", path = "thoth-api-server" } -thoth-app-server = { version = "0.6.0", path = "thoth-app-server" } -thoth-errors = { version = "0.6.0", path = "thoth-errors" } -thoth-export-server = { version = "0.6.0", path = "thoth-export-server" } +thoth-api = { version = "0.6.1", path = "thoth-api", features = ["backend"] } +thoth-api-server = { version = "0.6.1", path = "thoth-api-server" } +thoth-app-server = { version = "0.6.1", path = "thoth-app-server" } +thoth-errors = { version = "0.6.1", path = "thoth-errors" } +thoth-export-server = { version = "0.6.1", path = "thoth-export-server" } clap = "2.33.3" dialoguer = "0.7.1" dotenv = "0.9.0" diff --git a/thoth-api-server/Cargo.toml b/thoth-api-server/Cargo.toml index ceacafd5b..68719945b 100644 --- a/thoth-api-server/Cargo.toml +++ b/thoth-api-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-api-server" -version = "0.6.0" +version = "0.6.1" 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.6.0", path = "../thoth-api", features = ["backend"] } -thoth-errors = { version = "0.6.0", path = "../thoth-errors" } +thoth-api = { version = "0.6.1", path = "../thoth-api", features = ["backend"] } +thoth-errors = { version = "0.6.1", path = "../thoth-errors" } actix-web = "3.3.2" actix-cors = "0.5.4" actix-identity = "0.3.1" diff --git a/thoth-api/Cargo.toml b/thoth-api/Cargo.toml index 85aa8bda9..d4e4a2e96 100644 --- a/thoth-api/Cargo.toml +++ b/thoth-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-api" -version = "0.6.0" +version = "0.6.1" 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.6.0", path = "../thoth-errors" } +thoth-errors = { version = "0.6.1", path = "../thoth-errors" } actix-web = { version = "3.3.2", 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 517c29875..3005fb35c 100644 --- a/thoth-app-server/Cargo.toml +++ b/thoth-app-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-app-server" -version = "0.6.0" +version = "0.6.1" authors = ["Javier Arias ", "Ross Higman "] edition = "2018" license = "Apache-2.0" diff --git a/thoth-app/Cargo.toml b/thoth-app/Cargo.toml index b5e50c041..f49249e4c 100644 --- a/thoth-app/Cargo.toml +++ b/thoth-app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-app" -version = "0.6.0" +version = "0.6.1" authors = ["Javier Arias ", "Ross Higman "] edition = "2018" license = "Apache-2.0" @@ -33,5 +33,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.6.0", path = "../thoth-api" } -thoth-errors = { version = "0.6.0", path = "../thoth-errors" } +thoth-api = { version = "0.6.1", path = "../thoth-api" } +thoth-errors = { version = "0.6.1", path = "../thoth-errors" } diff --git a/thoth-app/manifest.json b/thoth-app/manifest.json index dc2c26565..a39c98866 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.6.0", + "version": "0.6.1", "icons": [ { "src": "\/android-icon-36x36.png", diff --git a/thoth-client/Cargo.toml b/thoth-client/Cargo.toml index f8e25076e..79e7826e2 100644 --- a/thoth-client/Cargo.toml +++ b/thoth-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-client" -version = "0.6.0" +version = "0.6.1" 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.6.0", path = "../thoth-api" } -thoth-errors = {version = "0.6.0", path = "../thoth-errors" } +thoth-api = {version = "0.6.1", path = "../thoth-api" } +thoth-errors = {version = "0.6.1", path = "../thoth-errors" } graphql_client = "0.9.0" chrono = { version = "0.4", features = ["serde"] } reqwest = { version = "0.10", features = ["json"] } diff --git a/thoth-errors/Cargo.toml b/thoth-errors/Cargo.toml index 035f89d42..e0f07fd41 100644 --- a/thoth-errors/Cargo.toml +++ b/thoth-errors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-errors" -version = "0.6.0" +version = "0.6.1" 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 d44bebc67..9bef0fda7 100644 --- a/thoth-export-server/Cargo.toml +++ b/thoth-export-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-export-server" -version = "0.6.0" +version = "0.6.1" 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.6.0", path = "../thoth-api" } -thoth-errors = { version = "0.6.0", path = "../thoth-errors" } -thoth-client = { version = "0.6.0", path = "../thoth-client" } +thoth-api = { version = "0.6.1", path = "../thoth-api" } +thoth-errors = { version = "0.6.1", path = "../thoth-errors" } +thoth-client = { version = "0.6.1", path = "../thoth-client" } actix-web = "3.3.2" actix-cors = "0.5.4" chrono = { version = "0.4", features = ["serde"] }