From 4297eb5edb034d72b9c395bac60e3bbe415d4fee Mon Sep 17 00:00:00 2001 From: Javier Arias Date: Tue, 25 Oct 2022 11:57:51 +0100 Subject: [PATCH 01/10] Upgrade actions/checkout --- .github/workflows/build_test_and_check.yml | 8 ++++---- .github/workflows/docker_build_and_push_to_dockerhub.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build_test_and_check.yml b/.github/workflows/build_test_and_check.yml index fd6969fc..25940ed0 100644 --- a/.github/workflows/build_test_and_check.yml +++ b/.github/workflows/build_test_and_check.yml @@ -32,7 +32,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions/setup-node@v2 with: node-version: '12.19.0' @@ -56,7 +56,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions/setup-node@v2 with: node-version: '12.19.0' @@ -85,7 +85,7 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions/setup-node@v2 with: node-version: '12.19.0' @@ -114,7 +114,7 @@ jobs: format_check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: toolchain: stable diff --git a/.github/workflows/docker_build_and_push_to_dockerhub.yml b/.github/workflows/docker_build_and_push_to_dockerhub.yml index 6d4a03f9..edc0dfdc 100644 --- a/.github/workflows/docker_build_and_push_to_dockerhub.yml +++ b/.github/workflows/docker_build_and_push_to_dockerhub.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Docker meta id: meta uses: docker/metadata-action@v3 From d7bde1d6fd876e151a013aa61c5d9e43ad061cce Mon Sep 17 00:00:00 2001 From: Javier Arias Date: Tue, 25 Oct 2022 12:02:12 +0100 Subject: [PATCH 02/10] Upgrade docker actions --- .github/workflows/docker_build.yml | 6 +++--- .../workflows/docker_build_and_push_to_dockerhub.yml | 10 +++++----- .github/workflows/docker_build_dev.yml | 6 +++--- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/docker_build.yml b/.github/workflows/docker_build.yml index 72f0fa33..09c3fb4f 100644 --- a/.github/workflows/docker_build.yml +++ b/.github/workflows/docker_build.yml @@ -14,12 +14,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Set up QEMU - uses: docker/setup-qemu-action@v1 + uses: docker/setup-qemu-action@v2 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 + uses: docker/setup-buildx-action@v2 - name: Build id: docker_build - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v3 with: push: false tags: openbookpublishers/thoth:latest diff --git a/.github/workflows/docker_build_and_push_to_dockerhub.yml b/.github/workflows/docker_build_and_push_to_dockerhub.yml index edc0dfdc..382d043c 100644 --- a/.github/workflows/docker_build_and_push_to_dockerhub.yml +++ b/.github/workflows/docker_build_and_push_to_dockerhub.yml @@ -12,7 +12,7 @@ jobs: uses: actions/checkout@v3 - name: Docker meta id: meta - uses: docker/metadata-action@v3 + uses: docker/metadata-action@v4 with: # list of Docker images to use as base name for tags images: | @@ -23,17 +23,17 @@ jobs: type=semver,pattern={{major}}.{{minor}} type=semver,pattern={{major}} - name: Set up QEMU - uses: docker/setup-qemu-action@v1 + uses: docker/setup-qemu-action@v2 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 + uses: docker/setup-buildx-action@v2 - name: Login to DockerHub - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build and push id: docker_build - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v3 with: push: true tags: ${{ steps.meta.outputs.tags }} diff --git a/.github/workflows/docker_build_dev.yml b/.github/workflows/docker_build_dev.yml index c2b9046f..f1cbc978 100644 --- a/.github/workflows/docker_build_dev.yml +++ b/.github/workflows/docker_build_dev.yml @@ -17,12 +17,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Set up QEMU - uses: docker/setup-qemu-action@v1 + uses: docker/setup-qemu-action@v2 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 + uses: docker/setup-buildx-action@v2 - name: Build id: docker_build - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v3 with: push: false tags: openbookpublishers/thoth:latest From 776a0810a034fc8cd22a45723b90716c16e713d5 Mon Sep 17 00:00:00 2001 From: Javier Arias Date: Tue, 25 Oct 2022 12:04:53 +0100 Subject: [PATCH 03/10] Upgrade node in github actions --- .github/workflows/build_test_and_check.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_test_and_check.yml b/.github/workflows/build_test_and_check.yml index 25940ed0..63ad5610 100644 --- a/.github/workflows/build_test_and_check.yml +++ b/.github/workflows/build_test_and_check.yml @@ -35,7 +35,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v2 with: - node-version: '12.19.0' + node-version: '16.16.0' - uses: actions-rs/toolchain@v1 with: toolchain: stable @@ -59,7 +59,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v2 with: - node-version: '12.19.0' + node-version: '16.16.0' - uses: actions-rs/toolchain@v1 with: toolchain: stable @@ -88,7 +88,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v2 with: - node-version: '12.19.0' + node-version: '16.16.0' - uses: actions-rs/toolchain@v1 with: toolchain: stable From a1003f0d9346cbad7154a02492ca3a1cbc845c38 Mon Sep 17 00:00:00 2001 From: Javier Arias Date: Tue, 25 Oct 2022 12:09:32 +0100 Subject: [PATCH 04/10] Upgrade wasm pack in github actions --- .github/workflows/build_test_and_check.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_test_and_check.yml b/.github/workflows/build_test_and_check.yml index 63ad5610..c48fa24f 100644 --- a/.github/workflows/build_test_and_check.yml +++ b/.github/workflows/build_test_and_check.yml @@ -41,7 +41,7 @@ jobs: toolchain: stable - uses: jetli/wasm-pack-action@v0.3.0 with: - version: 'v0.9.1' + version: 'v0.10.3' - name: Install rollup run: sudo npm install -g rollup@2.28.2 - name: Compile WASM @@ -65,7 +65,7 @@ jobs: toolchain: stable - uses: jetli/wasm-pack-action@v0.3.0 with: - version: 'v0.9.1' + version: 'v0.10.3' - name: Install rollup run: sudo npm install -g rollup@2.28.2 - name: Compile WASM @@ -94,7 +94,7 @@ jobs: toolchain: stable - uses: jetli/wasm-pack-action@v0.3.0 with: - version: 'v0.9.1' + version: 'v0.10.3' - name: Install rollup run: sudo npm install -g rollup@2.28.2 - name: Compile WASM From 7865d8ceb70e9929562e731edc6a3cbeeee818c8 Mon Sep 17 00:00:00 2001 From: Javier Arias Date: Tue, 25 Oct 2022 12:10:58 +0100 Subject: [PATCH 05/10] Upgrade actions/setup-node --- .github/workflows/build_test_and_check.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_test_and_check.yml b/.github/workflows/build_test_and_check.yml index c48fa24f..e1ae3fd7 100644 --- a/.github/workflows/build_test_and_check.yml +++ b/.github/workflows/build_test_and_check.yml @@ -33,7 +33,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v3 with: node-version: '16.16.0' - uses: actions-rs/toolchain@v1 @@ -57,7 +57,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v3 with: node-version: '16.16.0' - uses: actions-rs/toolchain@v1 @@ -86,7 +86,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v3 with: node-version: '16.16.0' - uses: actions-rs/toolchain@v1 From f2a162900e4626c02e1e8320487de9c5851b2f1c Mon Sep 17 00:00:00 2001 From: Javier Arias Date: Tue, 25 Oct 2022 12:15:03 +0100 Subject: [PATCH 06/10] Upgrade rollup in github actions --- .github/workflows/build_test_and_check.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_test_and_check.yml b/.github/workflows/build_test_and_check.yml index e1ae3fd7..da640d2e 100644 --- a/.github/workflows/build_test_and_check.yml +++ b/.github/workflows/build_test_and_check.yml @@ -43,7 +43,7 @@ jobs: with: version: 'v0.10.3' - name: Install rollup - run: sudo npm install -g rollup@2.28.2 + run: sudo npm install -g rollup@2.77.2 - name: Compile WASM run: wasm-pack build thoth-app/ --target web --release - name: Pack APP @@ -67,7 +67,7 @@ jobs: with: version: 'v0.10.3' - name: Install rollup - run: sudo npm install -g rollup@2.28.2 + run: sudo npm install -g rollup@2.77.2 - name: Compile WASM run: wasm-pack build thoth-app/ --target web --release - name: Pack APP @@ -96,7 +96,7 @@ jobs: with: version: 'v0.10.3' - name: Install rollup - run: sudo npm install -g rollup@2.28.2 + run: sudo npm install -g rollup@2.77.2 - name: Compile WASM run: wasm-pack build thoth-app/ --target web --release - name: Pack APP From 23ec2a393d5a0409231deed978c4b7e48107d573 Mon Sep 17 00:00:00 2001 From: rhigman <73792779+rhigman@users.noreply.github.com> Date: Wed, 26 Oct 2022 15:02:19 +0100 Subject: [PATCH 07/10] Update EBSCO ONIX 2.1 PriceTypeCode (excluding instead of including tax) based on feedback from EBSCO --- CHANGELOG.md | 2 ++ thoth-export-server/src/xml/onix21_ebsco_host.rs | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 59398515..4abb68a8 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] +### Changed + - [#xxx](https://github.com/thoth-pub/thoth/pull/xxx) - Update EBSCO Host ONIX price type code ## [[0.9.0]](https://github.com/thoth-pub/thoth/releases/tag/v0.9.0) - 2022-10-24 ### Added diff --git a/thoth-export-server/src/xml/onix21_ebsco_host.rs b/thoth-export-server/src/xml/onix21_ebsco_host.rs index 04d44aa8..b2e6bd0b 100644 --- a/thoth-export-server/src/xml/onix21_ebsco_host.rs +++ b/thoth-export-server/src/xml/onix21_ebsco_host.rs @@ -402,9 +402,9 @@ impl XmlElementBlock for Work { })?; // EBSCO Host require the price point for Open Access titles to be listed as "0.01 USD". write_element_block("Price", w, |w| { - // 02 RRP including tax + // 01 RRP excluding tax (price code requested by EBSCO) write_element_block("PriceTypeCode", w, |w| { - w.write(XmlEvent::Characters("02")).map_err(|e| e.into()) + w.write(XmlEvent::Characters("01")).map_err(|e| e.into()) })?; write_element_block("PriceAmount", w, |w| { w.write(XmlEvent::Characters("0.01")).map_err(|e| e.into()) @@ -1059,7 +1059,7 @@ mod tests { assert!(output .contains(r#" Open access"#)); assert!(output.contains(r#" "#)); - assert!(output.contains(r#" 02"#)); + assert!(output.contains(r#" 01"#)); assert!(output.contains(r#" 0.01"#)); assert!(output.contains(r#" USD"#)); From a6309e897771b6a96fbc9e54f0c84cf8d4e2104a Mon Sep 17 00:00:00 2001 From: rhigman <73792779+rhigman@users.noreply.github.com> Date: Wed, 26 Oct 2022 15:12:16 +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 4abb68a8..e855651c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Changed - - [#xxx](https://github.com/thoth-pub/thoth/pull/xxx) - Update EBSCO Host ONIX price type code + - [#449](https://github.com/thoth-pub/thoth/pull/449) - Update EBSCO Host ONIX price type code ## [[0.9.0]](https://github.com/thoth-pub/thoth/releases/tag/v0.9.0) - 2022-10-24 ### Added From a986ac74a3dd3e8b62a5b090cae4c835c45f5e17 Mon Sep 17 00:00:00 2001 From: Javier Arias Date: Thu, 27 Oct 2022 11:34:22 +0100 Subject: [PATCH 09/10] Update changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e855651c..90a919cd 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.1]](https://github.com/thoth-pub/thoth/releases/tag/v0.9.1) - 2022-10-27 ### Changed - [#449](https://github.com/thoth-pub/thoth/pull/449) - Update EBSCO Host ONIX price type code From 281819aeae1084274d9935e6dbf210473ce9f0a6 Mon Sep 17 00:00:00 2001 From: Javier Arias Date: Thu, 27 Oct 2022 13:49:35 +0100 Subject: [PATCH 10/10] Bump v0.9.1 --- 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 98e717ab..7a55376b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3822,7 +3822,7 @@ dependencies = [ [[package]] name = "thoth" -version = "0.9.0" +version = "0.9.1" dependencies = [ "cargo-husky", "clap", @@ -3837,7 +3837,7 @@ dependencies = [ [[package]] name = "thoth-api" -version = "0.9.0" +version = "0.9.1" dependencies = [ "actix-web", "argon2rs", @@ -3866,7 +3866,7 @@ dependencies = [ [[package]] name = "thoth-api-server" -version = "0.9.0" +version = "0.9.1" dependencies = [ "actix-cors", "actix-identity", @@ -3881,7 +3881,7 @@ dependencies = [ [[package]] name = "thoth-app" -version = "0.9.0" +version = "0.9.1" dependencies = [ "anyhow", "chrono", @@ -3909,7 +3909,7 @@ dependencies = [ [[package]] name = "thoth-app-server" -version = "0.9.0" +version = "0.9.1" dependencies = [ "actix-cors", "actix-web", @@ -3918,7 +3918,7 @@ dependencies = [ [[package]] name = "thoth-client" -version = "0.9.0" +version = "0.9.1" dependencies = [ "chrono", "graphql_client", @@ -3932,7 +3932,7 @@ dependencies = [ [[package]] name = "thoth-errors" -version = "0.9.0" +version = "0.9.1" dependencies = [ "actix-web", "csv", @@ -3951,7 +3951,7 @@ dependencies = [ [[package]] name = "thoth-export-server" -version = "0.9.0" +version = "0.9.1" dependencies = [ "actix-cors", "actix-web", diff --git a/Cargo.toml b/Cargo.toml index b17a73db..3605aa4a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth" -version = "0.9.0" +version = "0.9.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.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" } +thoth-api = { version = "0.9.1", path = "thoth-api", features = ["backend"] } +thoth-api-server = { version = "0.9.1", path = "thoth-api-server" } +thoth-app-server = { version = "0.9.1", path = "thoth-app-server" } +thoth-errors = { version = "0.9.1", path = "thoth-errors" } +thoth-export-server = { version = "0.9.1", 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 f637d855..514958c3 100644 --- a/thoth-api-server/Cargo.toml +++ b/thoth-api-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-api-server" -version = "0.9.0" +version = "0.9.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.9.0", path = "../thoth-api", features = ["backend"] } -thoth-errors = { version = "0.9.0", path = "../thoth-errors" } +thoth-api = { version = "0.9.1", path = "../thoth-api", features = ["backend"] } +thoth-errors = { version = "0.9.1", 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 66fa5acf..e169e8b4 100644 --- a/thoth-api/Cargo.toml +++ b/thoth-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-api" -version = "0.9.0" +version = "0.9.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.9.0", path = "../thoth-errors" } +thoth-errors = { version = "0.9.1", 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 cffc2a03..357844e3 100644 --- a/thoth-app-server/Cargo.toml +++ b/thoth-app-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-app-server" -version = "0.9.0" +version = "0.9.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 8e587e91..eab73b51 100644 --- a/thoth-app/Cargo.toml +++ b/thoth-app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-app" -version = "0.9.0" +version = "0.9.1" 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.9.0", path = "../thoth-api" } -thoth-errors = { version = "0.9.0", path = "../thoth-errors" } +thoth-api = { version = "0.9.1", path = "../thoth-api" } +thoth-errors = { version = "0.9.1", path = "../thoth-errors" } diff --git a/thoth-app/manifest.json b/thoth-app/manifest.json index 6a5879ec..cd3f0a90 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.9.0", + "version": "0.9.1", "icons": [ { "src": "\/android-icon-36x36.png", diff --git a/thoth-client/Cargo.toml b/thoth-client/Cargo.toml index 33cb31cf..8e8f51d3 100644 --- a/thoth-client/Cargo.toml +++ b/thoth-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-client" -version = "0.9.0" +version = "0.9.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.9.0", path = "../thoth-api" } -thoth-errors = {version = "0.9.0", path = "../thoth-errors" } +thoth-api = {version = "0.9.1", path = "../thoth-api" } +thoth-errors = {version = "0.9.1", 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 c1e9a31c..c896a9b3 100644 --- a/thoth-errors/Cargo.toml +++ b/thoth-errors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-errors" -version = "0.9.0" +version = "0.9.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 1d88279a..0b8e20fc 100644 --- a/thoth-export-server/Cargo.toml +++ b/thoth-export-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-export-server" -version = "0.9.0" +version = "0.9.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.9.0", path = "../thoth-api" } -thoth-errors = { version = "0.9.0", path = "../thoth-errors" } -thoth-client = { version = "0.9.0", path = "../thoth-client" } +thoth-api = { version = "0.9.1", path = "../thoth-api" } +thoth-errors = { version = "0.9.1", path = "../thoth-errors" } +thoth-client = { version = "0.9.1", path = "../thoth-client" } actix-web = "4.0.1" actix-cors = "0.6.0" chrono = { version = "0.4", features = ["serde"] }