Skip to content

Commit bf9f839

Browse files
committed
Merge branch 'release/v0.11.1'
2 parents 38807b3 + a62c06c commit bf9f839

19 files changed

Lines changed: 92 additions & 66 deletions

File tree

.github/workflows/build_test_and_check.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ jobs:
3535
- uses: actions/checkout@v3
3636
- uses: actions/setup-node@v3
3737
with:
38-
node-version: '18.15.0'
38+
node-version: '18.16.0'
3939
- uses: actions-rs/toolchain@v1
4040
with:
4141
toolchain: stable
4242
- uses: jetli/wasm-pack-action@v0.3.0
4343
with:
44-
version: 'v0.11.0'
44+
version: 'v0.11.1'
4545
- name: Install rollup
46-
run: sudo npm install -g rollup@3.20.2
46+
run: sudo npm install -g rollup@3.23.1
4747
- name: Compile WASM
4848
run: wasm-pack build thoth-app/ --target web --release
4949
- name: Pack APP
@@ -59,15 +59,15 @@ jobs:
5959
- uses: actions/checkout@v3
6060
- uses: actions/setup-node@v3
6161
with:
62-
node-version: '18.15.0'
62+
node-version: '18.16.0'
6363
- uses: actions-rs/toolchain@v1
6464
with:
6565
toolchain: stable
6666
- uses: jetli/wasm-pack-action@v0.3.0
6767
with:
68-
version: 'v0.10.0'
68+
version: 'v0.11.1'
6969
- name: Install rollup
70-
run: sudo npm install -g rollup@3.20.2
70+
run: sudo npm install -g rollup@3.23.1
7171
- name: Compile WASM
7272
run: wasm-pack build thoth-app/ --target web --release
7373
- name: Pack APP
@@ -88,15 +88,15 @@ jobs:
8888
- uses: actions/checkout@v3
8989
- uses: actions/setup-node@v3
9090
with:
91-
node-version: '18.15.0'
91+
node-version: '18.16.0'
9292
- uses: actions-rs/toolchain@v1
9393
with:
9494
toolchain: stable
9595
- uses: jetli/wasm-pack-action@v0.3.0
9696
with:
97-
version: 'v0.11.0'
97+
version: 'v0.11.1'
9898
- name: Install rollup
99-
run: sudo npm install -g rollup@3.20.2
99+
run: sudo npm install -g rollup@3.23.1
100100
- name: Compile WASM
101101
run: wasm-pack build thoth-app/ --target web --release
102102
- name: Pack APP

.github/workflows/run_migrations.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ jobs:
4343
- uses: actions/checkout@v3
4444
- uses: actions/setup-node@v3
4545
with:
46-
node-version: '18.15.0'
46+
node-version: '18.16.0'
4747
- uses: actions-rs/toolchain@v1
4848
with:
4949
toolchain: stable
5050
- uses: jetli/wasm-pack-action@v0.3.0
5151
with:
52-
version: 'v0.11.0'
52+
version: 'v0.11.1'
5353
- name: Install rollup
54-
run: sudo npm install -g rollup@3.20.2
54+
run: sudo npm install -g rollup@3.23.1
5555
- name: Compile WASM
5656
run: wasm-pack build thoth-app/ --target web --release
5757
- name: Pack APP

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [[0.11.1]](https://github.com/thoth-pub/thoth/releases/tag/v0.11.1) - 2023-06-15
10+
### Added
11+
- Add CC0 license to MARC records
12+
13+
### Changed
14+
- Upgrade rust to `1.70.0` in production and development `Dockerfile`
15+
- Upgrade build dependencies (npm `v9.6.7`, node `v18.16.0` and rollup `v3.23.1`) in production and development `Dockerfile`
16+
- Upgrade `wasm-pack` to v0.11.1
17+
- Replace `marc` fork with actual crate
18+
- Update about page
19+
920
## [[0.11.0]](https://github.com/thoth-pub/thoth/releases/tag/v0.11.0) - 2023-04-14
1021
### Added
1122
- [490](https://github.com/thoth-pub/thoth/issues/490) - Generate MARC 21 markup

Cargo.lock

Lines changed: 13 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth"
3-
version = "0.11.0"
3+
version = "0.11.1"
44
authors = ["Javier Arias <javi@openbookpublishers.com>", "Ross Higman <ross@openbookpublishers.com>"]
55
edition = "2018"
66
license = "Apache-2.0"
@@ -16,11 +16,11 @@ maintenance = { status = "actively-developed" }
1616
members = ["thoth-api", "thoth-api-server", "thoth-app", "thoth-app-server", "thoth-client", "thoth-errors", "thoth-export-server"]
1717

1818
[dependencies]
19-
thoth-api = { version = "0.11.0", path = "thoth-api", features = ["backend"] }
20-
thoth-api-server = { version = "0.11.0", path = "thoth-api-server" }
21-
thoth-app-server = { version = "0.11.0", path = "thoth-app-server" }
22-
thoth-errors = { version = "0.11.0", path = "thoth-errors" }
23-
thoth-export-server = { version = "0.11.0", path = "thoth-export-server" }
19+
thoth-api = { version = "0.11.1", path = "thoth-api", features = ["backend"] }
20+
thoth-api-server = { version = "0.11.1", path = "thoth-api-server" }
21+
thoth-app-server = { version = "0.11.1", path = "thoth-app-server" }
22+
thoth-errors = { version = "0.11.1", path = "thoth-errors" }
23+
thoth-export-server = { version = "0.11.1", path = "thoth-export-server" }
2424
clap = "2.33.3"
2525
dialoguer = "0.7.1"
2626
dotenv = "0.15.0"

Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
ARG RUST_IMAGE=rust:1.68.1
2-
ARG MUSL_IMAGE=clux/muslrust:1.68.1
1+
ARG RUST_IMAGE=rust:1.70.0
2+
ARG MUSL_IMAGE=clux/muslrust:1.70.0
33

44
FROM ${RUST_IMAGE} as wasm
55

6-
ENV NPM_VERSION=9.6.2
6+
ENV NPM_VERSION=9.6.7
77
ENV N_VERSION=9.0.1
8-
ENV NODE_VERSION=18.15.0
9-
ENV ROLLUP_VERSION=3.20.2
10-
ENV WASM_PACK_VERSION=0.11.0
8+
ENV NODE_VERSION=18.16.0
9+
ENV ROLLUP_VERSION=3.23.1
10+
ENV WASM_PACK_VERSION=0.11.1
1111

1212
ARG THOTH_GRAPHQL_API=https://api.thoth.pub
1313
ARG THOTH_EXPORT_API=https://export.thoth.pub

Dockerfile.dev

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
ARG RUST_VERSION=1.68.1
1+
ARG RUST_VERSION=1.70.0
22

33
FROM rust:${RUST_VERSION}
44

5-
ENV NPM_VERSION=9.6.2
5+
ENV NPM_VERSION=9.6.7
66
ENV N_VERSION=9.0.1
7-
ENV NODE_VERSION=18.15.0
8-
ENV ROLLUP_VERSION=3.20.2
9-
ENV WASM_PACK_VERSION=0.11.0
7+
ENV NODE_VERSION=18.16.0
8+
ENV ROLLUP_VERSION=3.23.1
9+
ENV WASM_PACK_VERSION=0.11.1
1010

1111
ARG THOTH_GRAPHQL_API=http://localhost:8000
1212
ARG THOTH_EXPORT_API=http://localhost:8181

thoth-api-server/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth-api-server"
3-
version = "0.11.0"
3+
version = "0.11.1"
44
authors = ["Javier Arias <javi@openbookpublishers.com>", "Ross Higman <ross@openbookpublishers.com>"]
55
edition = "2018"
66
license = "Apache-2.0"
@@ -9,8 +9,8 @@ repository = "https://github.com/thoth-pub/thoth"
99
readme = "README.md"
1010

1111
[dependencies]
12-
thoth-api = { version = "0.11.0", path = "../thoth-api", features = ["backend"] }
13-
thoth-errors = { version = "0.11.0", path = "../thoth-errors" }
12+
thoth-api = { version = "0.11.1", path = "../thoth-api", features = ["backend"] }
13+
thoth-errors = { version = "0.11.1", path = "../thoth-errors" }
1414
actix-web = "4.3.0"
1515
actix-cors = "0.6.4"
1616
actix-identity = "0.4.0"

thoth-api/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth-api"
3-
version = "0.11.0"
3+
version = "0.11.1"
44
authors = ["Javier Arias <javi@openbookpublishers.com>", "Ross Higman <ross@openbookpublishers.com>"]
55
edition = "2018"
66
license = "Apache-2.0"
@@ -16,7 +16,7 @@ maintenance = { status = "actively-developed" }
1616
backend = ["diesel", "diesel-derive-enum", "diesel_migrations", "futures", "actix-web"]
1717

1818
[dependencies]
19-
thoth-errors = { version = "0.11.0", path = "../thoth-errors" }
19+
thoth-errors = { version = "0.11.1", path = "../thoth-errors" }
2020
actix-web = { version = "4.3.0", optional = true }
2121
argon2rs = "0.2.5"
2222
isbn2 = "0.4.0"

thoth-app-server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth-app-server"
3-
version = "0.11.0"
3+
version = "0.11.1"
44
authors = ["Javier Arias <javi@openbookpublishers.com>", "Ross Higman <ross@openbookpublishers.com>"]
55
edition = "2018"
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)