Skip to content

Commit 6156c46

Browse files
committed
Merge tag 'v1.0.3' into develop
v1.0.3
2 parents 2028ecc + 76f1870 commit 6156c46

8 files changed

Lines changed: 27 additions & 25 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [[1.0.3]](https://github.com/thoth-pub/thoth/releases/tag/v1.0.3) - 2026-04-07
810
### Fixed
911
- [741](https://github.com/thoth-pub/thoth/pull/741) - Harden JATS rich-text handling by rejecting malformed or nested markup and abstract line breaks on write, and normalise Crossref abstract output to avoid invalid nested `jats:p` and `jats:break` elements
1012

Cargo.lock

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

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth"
3-
version = "1.0.2"
3+
version = "1.0.3"
44
authors = ["Javier Arias <javi@thoth.pub>", "Ross Higman <ross@thoth.pub>"]
55
edition = "2021"
66
license = "Apache-2.0"
@@ -15,10 +15,10 @@ maintenance = { status = "actively-developed" }
1515
members = ["thoth-api", "thoth-api-server", "thoth-client", "thoth-errors", "thoth-export-server"]
1616

1717
[dependencies]
18-
thoth-api = { version = "=1.0.2", path = "thoth-api", features = ["backend"] }
19-
thoth-api-server = { version = "=1.0.2", path = "thoth-api-server" }
20-
thoth-errors = { version = "=1.0.2", path = "thoth-errors" }
21-
thoth-export-server = { version = "=1.0.2", path = "thoth-export-server" }
18+
thoth-api = { version = "=1.0.3", path = "thoth-api", features = ["backend"] }
19+
thoth-api-server = { version = "=1.0.3", path = "thoth-api-server" }
20+
thoth-errors = { version = "=1.0.3", path = "thoth-errors" }
21+
thoth-export-server = { version = "=1.0.3", path = "thoth-export-server" }
2222
base64 = "0.22.1"
2323
clap = { version = "4.5.32", features = ["cargo", "env"] }
2424
dialoguer = { version = "0.11.0", features = ["password"] }

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 = "1.0.2"
3+
version = "1.0.3"
44
authors = ["Javier Arias <javi@thoth.pub>", "Ross Higman <ross@thoth.pub>"]
55
edition = "2021"
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 = "=1.0.2", path = "../thoth-api", features = ["backend"] }
13-
thoth-errors = { version = "=1.0.2", path = "../thoth-errors" }
12+
thoth-api = { version = "=1.0.3", path = "../thoth-api", features = ["backend"] }
13+
thoth-errors = { version = "=1.0.3", path = "../thoth-errors" }
1414
actix-web = "4.10"
1515
actix-cors = "0.7.1"
1616
actix-http = "3.10.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 = "1.0.2"
3+
version = "1.0.3"
44
authors = ["Javier Arias <javi@thoth.pub>", "Ross Higman <ross@thoth.pub>"]
55
edition = "2021"
66
license = "Apache-2.0"
@@ -31,7 +31,7 @@ backend = [
3131
]
3232

3333
[dependencies]
34-
thoth-errors = { version = "=1.0.2", path = "../thoth-errors" }
34+
thoth-errors = { version = "=1.0.3", path = "../thoth-errors" }
3535
actix-web = { version = "4.10", optional = true }
3636
isbn = "0.6.0"
3737
chrono = { version = "0.4.40", features = ["serde"] }

thoth-client/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth-client"
3-
version = "1.0.2"
3+
version = "1.0.3"
44
authors = ["Javier Arias <javi@thoth.pub>", "Ross Higman <ross@thoth.pub>"]
55
edition = "2021"
66
license = "Apache-2.0"
@@ -10,8 +10,8 @@ readme = "README.md"
1010
build = "build.rs"
1111

1212
[dependencies]
13-
thoth-api = {version = "=1.0.2", path = "../thoth-api" }
14-
thoth-errors = {version = "=1.0.2", path = "../thoth-errors" }
13+
thoth-api = {version = "=1.0.3", path = "../thoth-api" }
14+
thoth-errors = {version = "=1.0.3", path = "../thoth-errors" }
1515
graphql_client = "0.14.0"
1616
chrono = { version = "0.4.40", features = ["serde"] }
1717
reqwest = { version = "0.12", features = ["json"] }
@@ -22,4 +22,4 @@ serde_json = "1.0"
2222
uuid = { version = "1.16.0", features = ["serde"] }
2323

2424
[build-dependencies]
25-
thoth-api = { version = "=1.0.2", path = "../thoth-api", features = ["backend"] }
25+
thoth-api = { version = "=1.0.3", path = "../thoth-api", features = ["backend"] }

thoth-errors/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-errors"
3-
version = "1.0.2"
3+
version = "1.0.3"
44
authors = ["Javier Arias <javi@thoth.pub>", "Ross Higman <ross@thoth.pub>"]
55
edition = "2021"
66
license = "Apache-2.0"

thoth-export-server/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thoth-export-server"
3-
version = "1.0.2"
3+
version = "1.0.3"
44
authors = ["Javier Arias <javi@thoth.pub>", "Ross Higman <ross@thoth.pub>"]
55
edition = "2021"
66
license = "Apache-2.0"
@@ -10,9 +10,9 @@ readme = "README.md"
1010
build = "build.rs"
1111

1212
[dependencies]
13-
thoth-api = { version = "=1.0.2", path = "../thoth-api", features = ["backend"] }
14-
thoth-errors = { version = "=1.0.2", path = "../thoth-errors" }
15-
thoth-client = { version = "=1.0.2", path = "../thoth-client" }
13+
thoth-api = { version = "=1.0.3", path = "../thoth-api", features = ["backend"] }
14+
thoth-errors = { version = "=1.0.3", path = "../thoth-errors" }
15+
thoth-client = { version = "=1.0.3", path = "../thoth-client" }
1616
actix-web = "4.10"
1717
actix-cors = "0.7.1"
1818
cc_license = "0.1.0"

0 commit comments

Comments
 (0)