Skip to content

Commit 715bbbc

Browse files
chore: release
1 parent 1086095 commit 715bbbc

21 files changed

Lines changed: 98 additions & 38 deletions

File tree

Cargo.lock

Lines changed: 10 additions & 10 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: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ 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-interpreter-v0.1.3...xee-interpreter-v0.1.4) - 2025-03-24
11+
12+
### Other
13+
14+
- updated the following local packages: xee-xpath-macros
15+
1016
## [0.1.3](https://github.com/Paligo/xee/compare/xee-interpreter-v0.1.2...xee-interpreter-v0.1.3) - 2025-03-24
1117

1218
### Other

xee-interpreter/Cargo.toml

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

2727
[dependencies]
2828
xee-xpath-ast = { path = "../xee-xpath-ast", version = "0.1.2" }
29-
xee-xpath-macros = { path = "../xee-xpath-macros", version = "0.1.1" }
29+
xee-xpath-macros = { path = "../xee-xpath-macros", version = "0.1.2" }
3030
xee-schema-type = { path = "../xee-schema-type", version = "0.1.2" }
3131
xee-xpath-type = { path = "../xee-xpath-type", version = "0.1.2" }
3232
xee-name = { path = "../xee-name", version = "0.1.3" }

xee-ir/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ 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-ir-v0.1.2...xee-ir-v0.1.3) - 2025-03-24
11+
12+
### Other
13+
14+
- release
15+
1016
## [0.1.2](https://github.com/Paligo/xee/compare/xee-ir-v0.1.1...xee-ir-v0.1.2) - 2025-03-21
1117

1218
### Other

xee-ir/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "xee-ir"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition = "2021"
55
authors = ["The Xee Project Developers"]
66
keywords = ["xml", "xpath", "xslt"]
@@ -15,7 +15,7 @@ homepage = "https://github.com/Paligo/xee"
1515
[dependencies]
1616
xee-xpath-ast = { path = "../xee-xpath-ast", version = "0.1.2" }
1717
xee-schema-type = { path = "../xee-schema-type", version = "0.1.2" }
18-
xee-interpreter = { path = "../xee-interpreter", version = "0.1.3" }
18+
xee-interpreter = { path = "../xee-interpreter", version = "0.1.4" }
1919
ahash = { workspace = true }
2020
ordered-float = { workspace = true }
2121
rust_decimal = { workspace = true }

xee-testrunner/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ 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-testrunner-v0.1.3...xee-testrunner-v0.1.4) - 2025-03-24
11+
12+
### Other
13+
14+
- updated the following local packages: xee-xpath
15+
1016
## [0.1.3](https://github.com/Paligo/xee/compare/xee-testrunner-v0.1.2...xee-testrunner-v0.1.3) - 2025-03-24
1117

1218
### Other

xee-testrunner/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-testrunner"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
edition = "2021"
55
authors = ["The Xee Project Developers"]
66
keywords = ["xml", "xpath", "xslt", "testing"]
@@ -12,9 +12,9 @@ documentation = "https://docs.rs/xee-testrunner"
1212
homepage = "https://github.com/Paligo/xee"
1313

1414
[dependencies]
15-
xee-xpath-load = { path = "../xee-xpath-load", version = "0.1.2" }
16-
xee-xpath = { path = "../xee-xpath", version = "0.1.2" }
17-
xee-xslt-compiler = { path = "../xee-xslt-compiler", version = "0.1.3" }
15+
xee-xpath-load = { path = "../xee-xpath-load", version = "0.1.3" }
16+
xee-xpath = { path = "../xee-xpath", version = "0.1.3" }
17+
xee-xslt-compiler = { path = "../xee-xslt-compiler", version = "0.1.4" }
1818
xee-name = { path = "../xee-name", version = "0.1.3" }
1919
anyhow = { workspace = true }
2020
thiserror = { workspace = true }

xee-xpath-compiler/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ 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-xpath-compiler-v0.1.2...xee-xpath-compiler-v0.1.3) - 2025-03-24
11+
12+
### Other
13+
14+
- release
15+
1016
## [0.1.2](https://github.com/Paligo/xee/compare/xee-xpath-compiler-v0.1.1...xee-xpath-compiler-v0.1.2) - 2025-03-21
1117

1218
### Other

xee-xpath-compiler/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "xee-xpath-compiler"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition = "2021"
55
authors = ["The Xee Project Developers"]
66
keywords = ["xml", "xpath"]
@@ -17,8 +17,8 @@ serde = ["xee-xpath-ast/serde", "xee-interpreter/serde"]
1717
[dependencies]
1818
xee-xpath-ast = { path = "../xee-xpath-ast", version = "0.1.2" }
1919
xee-schema-type = { path = "../xee-schema-type", version = "0.1.2" }
20-
xee-interpreter = { path = "../xee-interpreter", version = "0.1.3" }
21-
xee-ir = { path = "../xee-ir", version = "0.1.2" }
20+
xee-interpreter = { path = "../xee-interpreter", version = "0.1.4" }
21+
xee-ir = { path = "../xee-ir", version = "0.1.3" }
2222
ahash = { workspace = true }
2323
ordered-float = { workspace = true }
2424
rust_decimal = { workspace = true }

xee-xpath-load/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ 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-xpath-load-v0.1.2...xee-xpath-load-v0.1.3) - 2025-03-24
11+
12+
### Other
13+
14+
- updated the following local packages: xee-xpath-compiler, xee-xpath
15+
1016
## [0.1.2](https://github.com/Paligo/xee/compare/xee-xpath-load-v0.1.1...xee-xpath-load-v0.1.2) - 2025-03-21
1117

1218
### Other

0 commit comments

Comments
 (0)