-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
31 changed files
with
578 additions
and
119 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "thoth" | ||
version = "0.4.4" | ||
version = "0.4.5" | ||
authors = ["Javier Arias <[email protected]>", "Ross Higman <[email protected]>"] | ||
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.4.4", path = "thoth-api", features = ["backend"] } | ||
thoth-api-server = { version = "0.4.4", path = "thoth-api-server" } | ||
thoth-app-server = { version = "0.4.4", path = "thoth-app-server" } | ||
thoth-errors = { version = "0.4.4", path = "thoth-errors" } | ||
thoth-export-server = { version = "0.4.4", path = "thoth-export-server" } | ||
thoth-api = { version = "0.4.5", path = "thoth-api", features = ["backend"] } | ||
thoth-api-server = { version = "0.4.5", path = "thoth-api-server" } | ||
thoth-app-server = { version = "0.4.5", path = "thoth-app-server" } | ||
thoth-errors = { version = "0.4.5", path = "thoth-errors" } | ||
thoth-export-server = { version = "0.4.5", path = "thoth-export-server" } | ||
clap = "2.33.3" | ||
dialoguer = "0.7.1" | ||
dotenv = "0.9.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "thoth-api-server" | ||
version = "0.4.4" | ||
version = "0.4.5" | ||
authors = ["Javier Arias <[email protected]>", "Ross Higman <[email protected]>"] | ||
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.4.4", path = "../thoth-api", features = ["backend"] } | ||
thoth-errors = { version = "0.4.4", path = "../thoth-errors" } | ||
thoth-api = { version = "0.4.5", path = "../thoth-api", features = ["backend"] } | ||
thoth-errors = { version = "0.4.5", path = "../thoth-errors" } | ||
actix-web = "3.3.2" | ||
actix-cors = "0.5.4" | ||
actix-identity = "0.3.1" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "thoth-api" | ||
version = "0.4.4" | ||
version = "0.4.5" | ||
authors = ["Javier Arias <[email protected]>", "Ross Higman <[email protected]>"] | ||
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.4.4", path = "../thoth-errors" } | ||
thoth-errors = { version = "0.4.5", path = "../thoth-errors" } | ||
actix-web = { version = "3.3.2", optional = true } | ||
argon2rs = "0.2.5" | ||
isbn2 = "0.4.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
ALTER TABLE work | ||
ALTER COLUMN width TYPE INTEGER, | ||
ALTER COLUMN height TYPE INTEGER; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
ALTER TABLE work | ||
ALTER COLUMN width TYPE double precision, | ||
ALTER COLUMN height TYPE double precision; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.