Skip to content

Commit

Permalink
Merge branch 'release/v0.7.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
ja573 committed Jan 24, 2022
2 parents 866aa56 + 6a2dbfa commit 03d6eeb
Show file tree
Hide file tree
Showing 16 changed files with 109 additions and 107 deletions.
1 change: 1 addition & 0 deletions .github/workflows/docker_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- 'release/**'
workflow_dispatch:

jobs:
build_docker_image:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [[0.7.1]](https://github.com/thoth-pub/thoth/releases/tag/v0.7.1) - 2022-01-24
### Changed
- Removed redundant `to_string` calls to comply with [`rustc 1.58.0`](https://github.com/rust-lang/rust/releases/tag/1.58.0)
- [#329](https://github.com/thoth-pub/thoth/pull/329) - Update EBSCO Host ONIX pricing and contributor display logic
- Allow building docker image manually in actions

## [[0.7.0]](https://github.com/thoth-pub/thoth/releases/tag/v0.7.0) - 2022-01-11
### Added
- [#28](https://github.com/thoth-pub/thoth/issues/28) - Implement chapter structure
Expand Down
16 changes: 8 additions & 8 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "thoth"
version = "0.7.0"
version = "0.7.1"
authors = ["Javier Arias <[email protected]>", "Ross Higman <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand All @@ -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.7.0", path = "thoth-api", features = ["backend"] }
thoth-api-server = { version = "0.7.0", path = "thoth-api-server" }
thoth-app-server = { version = "0.7.0", path = "thoth-app-server" }
thoth-errors = { version = "0.7.0", path = "thoth-errors" }
thoth-export-server = { version = "0.7.0", path = "thoth-export-server" }
thoth-api = { version = "0.7.1", path = "thoth-api", features = ["backend"] }
thoth-api-server = { version = "0.7.1", path = "thoth-api-server" }
thoth-app-server = { version = "0.7.1", path = "thoth-app-server" }
thoth-errors = { version = "0.7.1", path = "thoth-errors" }
thoth-export-server = { version = "0.7.1", path = "thoth-export-server" }
clap = "2.33.3"
dialoguer = "0.7.1"
dotenv = "0.9.0"
Expand Down
6 changes: 3 additions & 3 deletions thoth-api-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "thoth-api-server"
version = "0.7.0"
version = "0.7.1"
authors = ["Javier Arias <[email protected]>", "Ross Higman <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand All @@ -9,8 +9,8 @@ repository = "https://github.com/thoth-pub/thoth"
readme = "README.md"

[dependencies]
thoth-api = { version = "0.7.0", path = "../thoth-api", features = ["backend"] }
thoth-errors = { version = "0.7.0", path = "../thoth-errors" }
thoth-api = { version = "0.7.1", path = "../thoth-api", features = ["backend"] }
thoth-errors = { version = "0.7.1", path = "../thoth-errors" }
actix-web = "3.3.2"
actix-cors = "0.5.4"
actix-identity = "0.3.1"
Expand Down
4 changes: 2 additions & 2 deletions thoth-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "thoth-api"
version = "0.7.0"
version = "0.7.1"
authors = ["Javier Arias <[email protected]>", "Ross Higman <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand All @@ -16,7 +16,7 @@ maintenance = { status = "actively-developed" }
backend = ["diesel", "diesel-derive-enum", "diesel_migrations", "futures", "actix-web"]

[dependencies]
thoth-errors = { version = "0.7.0", path = "../thoth-errors" }
thoth-errors = { version = "0.7.1", path = "../thoth-errors" }
actix-web = { version = "3.3.2", optional = true }
argon2rs = "0.2.5"
isbn2 = "0.4.0"
Expand Down
2 changes: 1 addition & 1 deletion thoth-app-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "thoth-app-server"
version = "0.7.0"
version = "0.7.1"
authors = ["Javier Arias <[email protected]>", "Ross Higman <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand Down
6 changes: 3 additions & 3 deletions thoth-app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "thoth-app"
version = "0.7.0"
version = "0.7.1"
authors = ["Javier Arias <[email protected]>", "Ross Higman <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand Down Expand Up @@ -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.7.0", path = "../thoth-api" }
thoth-errors = { version = "0.7.0", path = "../thoth-errors" }
thoth-api = { version = "0.7.1", path = "../thoth-api" }
thoth-errors = { version = "0.7.1", path = "../thoth-errors" }
2 changes: 1 addition & 1 deletion thoth-app/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"start_url": "/?homescreen=1",
"background_color": "#ffffff",
"theme_color": "#ffdd57",
"version": "0.7.0",
"version": "0.7.1",
"icons": [
{
"src": "\/android-icon-36x36.png",
Expand Down
6 changes: 3 additions & 3 deletions thoth-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "thoth-client"
version = "0.7.0"
version = "0.7.1"
authors = ["Javier Arias <[email protected]>", "Ross Higman <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand All @@ -9,8 +9,8 @@ repository = "https://github.com/thoth-pub/thoth"
readme = "README.md"

[dependencies]
thoth-api = {version = "0.7.0", path = "../thoth-api" }
thoth-errors = {version = "0.7.0", path = "../thoth-errors" }
thoth-api = {version = "0.7.1", path = "../thoth-api" }
thoth-errors = {version = "0.7.1", path = "../thoth-errors" }
graphql_client = "0.9.0"
chrono = { version = "0.4", features = ["serde"] }
reqwest = { version = "0.10", features = ["json"] }
Expand Down
2 changes: 1 addition & 1 deletion thoth-errors/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "thoth-errors"
version = "0.7.0"
version = "0.7.1"
authors = ["Javier Arias <[email protected]>", "Ross Higman <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand Down
8 changes: 4 additions & 4 deletions thoth-export-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "thoth-export-server"
version = "0.7.0"
version = "0.7.1"
authors = ["Javier Arias <[email protected]>", "Ross Higman <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand All @@ -9,9 +9,9 @@ repository = "https://github.com/thoth-pub/thoth"
readme = "README.md"

[dependencies]
thoth-api = { version = "0.7.0", path = "../thoth-api" }
thoth-errors = { version = "0.7.0", path = "../thoth-errors" }
thoth-client = { version = "0.7.0", path = "../thoth-client" }
thoth-api = { version = "0.7.1", path = "../thoth-api" }
thoth-errors = { version = "0.7.1", path = "../thoth-errors" }
thoth-client = { version = "0.7.1", path = "../thoth-client" }
actix-web = "3.3.2"
actix-cors = "0.5.4"
chrono = { version = "0.4", features = ["serde"] }
Expand Down
Loading

0 comments on commit 03d6eeb

Please sign in to comment.