Skip to content

Commit 02f505f

Browse files
github-actions[bot]faassen
authored andcommitted
chore(xee): release v0.1.5
1 parent c4da1e2 commit 02f505f

31 files changed

Lines changed: 178 additions & 72 deletions

File tree

Cargo.lock

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

xee-interpreter/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.1.5](https://github.com/Paligo/xee/compare/xee-interpreter-v0.1.4...xee-interpreter-v0.1.5) - 2025-03-24
11+
12+
### Other
13+
14+
- Badges.
15+
- Update a whole lot of readmes, linking things.
16+
- Credits and more links
17+
1018
## [0.1.4](https://github.com/Paligo/xee/compare/xee-interpreter-v0.1.3...xee-interpreter-v0.1.4) - 2025-03-24
1119

1220
### Other

xee-interpreter/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "xee-interpreter"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
edition = "2021"
55
authors = ["The Xee Project Developers"]
66
keywords = ["xml", "xpath"]
@@ -25,11 +25,11 @@ serde = [
2525
]
2626

2727
[dependencies]
28-
xee-xpath-ast = { path = "../xee-xpath-ast", version = "0.1.2" }
29-
xee-xpath-macros = { path = "../xee-xpath-macros", version = "0.1.2" }
30-
xee-schema-type = { path = "../xee-schema-type", version = "0.1.2" }
31-
xee-xpath-type = { path = "../xee-xpath-type", version = "0.1.2" }
32-
xee-name = { path = "../xee-name", version = "0.1.3" }
28+
xee-xpath-ast = { path = "../xee-xpath-ast", version = "0.1.3" }
29+
xee-xpath-macros = { path = "../xee-xpath-macros", version = "0.1.3" }
30+
xee-schema-type = { path = "../xee-schema-type", version = "0.1.3" }
31+
xee-xpath-type = { path = "../xee-xpath-type", version = "0.1.3" }
32+
xee-name = { path = "../xee-name", version = "0.1.4" }
3333
ahash = { workspace = true }
3434
arrayvec = "0.7.6"
3535
chumsky = { workspace = true }

xee-ir/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.1.4](https://github.com/Paligo/xee/compare/xee-ir-v0.1.3...xee-ir-v0.1.4) - 2025-03-24
11+
12+
### Other
13+
14+
- Add badges.
15+
- Update a whole lot of readmes, linking things.
16+
1017
## [0.1.3](https://github.com/Paligo/xee/compare/xee-ir-v0.1.2...xee-ir-v0.1.3) - 2025-03-24
1118

1219
### Other

xee-ir/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "xee-ir"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
edition = "2021"
55
authors = ["The Xee Project Developers"]
66
keywords = ["xml", "xpath", "xslt"]
@@ -13,9 +13,9 @@ documentation = "https://docs.rs/xee-ir"
1313
homepage = "https://github.com/Paligo/xee"
1414

1515
[dependencies]
16-
xee-xpath-ast = { path = "../xee-xpath-ast", version = "0.1.2" }
17-
xee-schema-type = { path = "../xee-schema-type", version = "0.1.2" }
18-
xee-interpreter = { path = "../xee-interpreter", version = "0.1.4" }
16+
xee-xpath-ast = { path = "../xee-xpath-ast", version = "0.1.3" }
17+
xee-schema-type = { path = "../xee-schema-type", version = "0.1.3" }
18+
xee-interpreter = { path = "../xee-interpreter", version = "0.1.5" }
1919
ahash = { workspace = true }
2020
ordered-float = { workspace = true }
2121
rust_decimal = { workspace = true }

xee-name/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.1.4](https://github.com/Paligo/xee/compare/xee-name-v0.1.3...xee-name-v0.1.4) - 2025-03-24
11+
12+
### Other
13+
14+
- Add badges.
15+
- Update a whole lot of readmes, linking things.
16+
1017
## [0.1.3](https://github.com/Paligo/xee/compare/xee-name-v0.1.2...xee-name-v0.1.3) - 2025-03-24
1118

1219
### Docs

xee-name/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "xee-name"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
edition = "2021"
55
authors = ["The Xee Project Developers"]
66
keywords = ["xml", "xpath"]

xee-schema-type/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.1.3](https://github.com/Paligo/xee/compare/xee-schema-type-v0.1.2...xee-schema-type-v0.1.3) - 2025-03-24
11+
12+
### Other
13+
14+
- Add badges.
15+
- Update a whole lot of readmes, linking things.
16+
1017
## [0.1.2](https://github.com/Paligo/xee/compare/xee-schema-type-v0.1.1...xee-schema-type-v0.1.2) - 2025-03-20
1118

1219
- Tweak to do with release fixing.

xee-schema-type/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "xee-schema-type"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition = "2021"
55
authors = ["The Xee Project Developers"]
66
keywords = ["xml", "xpath"]

xee-testrunner/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.1.5](https://github.com/Paligo/xee/compare/xee-testrunner-v0.1.4...xee-testrunner-v0.1.5) - 2025-03-24
11+
12+
### Other
13+
14+
- Add badges.
15+
- Update a whole lot of readmes, linking things.
16+
1017
## [0.1.4](https://github.com/Paligo/xee/compare/xee-testrunner-v0.1.3...xee-testrunner-v0.1.4) - 2025-03-24
1118

1219
### Other

0 commit comments

Comments
 (0)