Skip to content

Commit 6647bba

Browse files
committed
Release swls-lang-turtle v0.1.1, swls-lang-jsonld v0.1.1, swls-lang-sparql v0.1.1, swls-lang-trig v0.1.0, swls v0.1.1
1 parent 3faf76b commit 6647bba

12 files changed

Lines changed: 46 additions & 15 deletions

File tree

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ swls-lov = { path = "lov", version = "0.1.0" }
3434
swls-core = { path = "core", version = "0.1.0", default-features = false }
3535
swls-token-helpers = { path = "swls-token-helpers", version = "0.1.0" }
3636
swls-lang-rdf-base = { path = "lang-rdf-base", version = "0.1.0", default-features = false }
37-
swls-lang-turtle = { path = "lang-turtle", version = "0.1.0" }
38-
swls-lang-jsonld = { path = "lang-jsonld", version = "0.1.0" }
39-
swls-lang-sparql = { path = "lang-sparql", version = "0.1.0" }
40-
swls-lang-trig = { path = "lang-trig", version = "0.1.0" }
37+
swls-lang-turtle = { path = "lang-turtle", version = "0.1.0", default-features = false }
38+
swls-lang-jsonld = { path = "lang-jsonld", version = "0.1.0", default-features = false }
39+
swls-lang-sparql = { path = "lang-sparql", version = "0.1.0", default-features = false }
40+
swls-lang-trig = { path = "lang-trig", version = "0.1.0", default-features = false }
4141

4242
[workspace]
4343
default-members = [

lang-jsonld/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4444

4545
<csr-read-only-do-not-edit/>
4646

47-
- 60 commits contributed to the release.
47+
- 61 commits contributed to the release.
4848
- 22 commits were understood as [conventional](https://www.conventionalcommits.org).
4949
- 0 issues like '(#ID)' were seen in commit messages
5050

@@ -55,6 +55,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5555
<details><summary>view details</summary>
5656

5757
* **Uncategorized**
58+
- Release swls-lang-rdf-base v0.1.0, swls-lang-turtle v0.1.1, swls-lang-jsonld v0.1.1, swls-lang-sparql v0.1.1, swls-lang-trig v0.1.0, swls v0.1.1 ([`3faf76b`](https://github.com/SemanticWebLanguageServer/swls/commit/3faf76b8fe7d6ebc11193368cc65ae1ae4b4b61f))
5859
- Release swls-lov v0.1.1, swls-core v0.1.1, components-rs v0.1.2, swls-lang-rdf-base v0.1.0, swls-lang-turtle v0.1.1, swls-lang-jsonld v0.1.1, swls-lang-sparql v0.1.1, swls-lang-trig v0.1.0, swls v0.1.1 ([`612f47d`](https://github.com/SemanticWebLanguageServer/swls/commit/612f47d34fbde7ad5025165735b0c19eb6d6b203))
5960
- Bump bevy_ecs to 0.18! ([`37ca762`](https://github.com/SemanticWebLanguageServer/swls/commit/37ca76298f9b43001bdcc6f9096a8611b8559128))
6061
- Make cjs work for vscode ([`35ff992`](https://github.com/SemanticWebLanguageServer/swls/commit/35ff9925b3957c491e3798a62ae4e4e32f88d40e))

lang-jsonld/Cargo.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ license.workspace = true
1010
repository.workspace = true
1111
homepage.workspace = true
1212

13+
[features]
14+
default = ["agnostic"]
15+
shapes = []
16+
tokio = ["swls-core/tokio"]
17+
agnostic = ["swls-core/agnostic"]
18+
1319
[dependencies]
1420
bevy_ecs.workspace = true
1521
futures.workspace = true
@@ -19,7 +25,7 @@ tracing.workspace = true
1925
rowan = "0.16.1"
2026

2127
components-rs = { workspace = true }
22-
swls-core = { workspace = true, features = ["shapes"] }
28+
swls-core = { workspace = true }
2329
swls-lang-rdf-base = { workspace = true }
2430
swls-lang-turtle = { workspace = true }
2531
swls-lov = { workspace = true }

lang-rdf-base/Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ repository.workspace = true
1111
homepage.workspace = true
1212

1313
[features]
14-
default = ["swls-core/agnostic"]
14+
default = ["agnostic"]
15+
shapes = []
16+
tokio = ["swls-core/tokio"]
17+
agnostic = ["swls-core/agnostic"]
1518

1619
[dependencies]
1720
bevy_ecs.workspace = true

lang-sparql/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2222

2323
<csr-read-only-do-not-edit/>
2424

25-
- 10 commits contributed to the release over the course of 26 calendar days.
25+
- 11 commits contributed to the release over the course of 26 calendar days.
2626
- 8 commits were understood as [conventional](https://www.conventionalcommits.org).
2727
- 0 issues like '(#ID)' were seen in commit messages
2828

@@ -33,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3333
<details><summary>view details</summary>
3434

3535
* **Uncategorized**
36+
- Release swls-lang-rdf-base v0.1.0, swls-lang-turtle v0.1.1, swls-lang-jsonld v0.1.1, swls-lang-sparql v0.1.1, swls-lang-trig v0.1.0, swls v0.1.1 ([`3faf76b`](https://github.com/SemanticWebLanguageServer/swls/commit/3faf76b8fe7d6ebc11193368cc65ae1ae4b4b61f))
3637
- Release swls-lov v0.1.1, swls-core v0.1.1, components-rs v0.1.2, swls-lang-rdf-base v0.1.0, swls-lang-turtle v0.1.1, swls-lang-jsonld v0.1.1, swls-lang-sparql v0.1.1, swls-lang-trig v0.1.0, swls v0.1.1 ([`612f47d`](https://github.com/SemanticWebLanguageServer/swls/commit/612f47d34fbde7ad5025165735b0c19eb6d6b203))
3738
- Bump bevy_ecs to 0.18! ([`37ca762`](https://github.com/SemanticWebLanguageServer/swls/commit/37ca76298f9b43001bdcc6f9096a8611b8559128))
3839
- Move components-rs to Url ([`44cb452`](https://github.com/SemanticWebLanguageServer/swls/commit/44cb452ffa0417562a5d26c863981419b56df701))

lang-sparql/Cargo.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ license.workspace = true
1010
repository.workspace = true
1111
homepage.workspace = true
1212

13+
[features]
14+
default = ["agnostic"]
15+
shapes = []
16+
tokio = ["swls-core/tokio"]
17+
agnostic = ["swls-core/agnostic"]
18+
1319
[dependencies]
1420
async-trait.workspace = true
1521
bevy_ecs.workspace = true
@@ -25,7 +31,7 @@ rowan = "0.16.1"
2531
rdf-parsers.workspace = true
2632
swls-lang-turtle.workspace = true
2733
swls-lang-rdf-base.workspace = true
28-
swls-core = { workspace = true, features = ["shapes"] }
34+
swls-core = { workspace = true }
2935
swls-lov.workspace = true
3036

3137
[dev-dependencies]

lang-trig/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2222

2323
<csr-read-only-do-not-edit/>
2424

25-
- 9 commits contributed to the release over the course of 18 calendar days.
25+
- 10 commits contributed to the release over the course of 18 calendar days.
2626
- 8 commits were understood as [conventional](https://www.conventionalcommits.org).
2727
- 0 issues like '(#ID)' were seen in commit messages
2828

@@ -33,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3333
<details><summary>view details</summary>
3434

3535
* **Uncategorized**
36+
- Release swls-lang-rdf-base v0.1.0, swls-lang-turtle v0.1.1, swls-lang-jsonld v0.1.1, swls-lang-sparql v0.1.1, swls-lang-trig v0.1.0, swls v0.1.1 ([`3faf76b`](https://github.com/SemanticWebLanguageServer/swls/commit/3faf76b8fe7d6ebc11193368cc65ae1ae4b4b61f))
3637
- Release swls-lov v0.1.1, swls-core v0.1.1, components-rs v0.1.2, swls-lang-rdf-base v0.1.0, swls-lang-turtle v0.1.1, swls-lang-jsonld v0.1.1, swls-lang-sparql v0.1.1, swls-lang-trig v0.1.0, swls v0.1.1 ([`612f47d`](https://github.com/SemanticWebLanguageServer/swls/commit/612f47d34fbde7ad5025165735b0c19eb6d6b203))
3738
- Bump bevy_ecs to 0.18! ([`37ca762`](https://github.com/SemanticWebLanguageServer/swls/commit/37ca76298f9b43001bdcc6f9096a8611b8559128))
3839
- Move components-rs to Url ([`44cb452`](https://github.com/SemanticWebLanguageServer/swls/commit/44cb452ffa0417562a5d26c863981419b56df701))

lang-trig/Cargo.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ license.workspace = true
1010
repository.workspace = true
1111
homepage.workspace = true
1212

13+
[features]
14+
default = ["agnostic"]
15+
shapes = []
16+
tokio = ["swls-core/tokio"]
17+
agnostic = ["swls-core/agnostic"]
18+
1319
[dependencies]
1420
async-trait.workspace = true
1521
bevy_ecs.workspace = true
@@ -22,7 +28,7 @@ rowan = "0.16.1"
2228
rdf-parsers.workspace = true
2329
swls-lang-turtle.workspace = true
2430
swls-lang-rdf-base.workspace = true
25-
swls-core = { workspace = true, features = ["shapes"] }
31+
swls-core = { workspace = true }
2632
swls-lov.workspace = true
2733

2834
[dev-dependencies]

lang-turtle/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3636

3737
<csr-read-only-do-not-edit/>
3838

39-
- 95 commits contributed to the release.
39+
- 96 commits contributed to the release.
4040
- 19 commits were understood as [conventional](https://www.conventionalcommits.org).
4141
- 0 issues like '(#ID)' were seen in commit messages
4242

@@ -47,6 +47,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4747
<details><summary>view details</summary>
4848

4949
* **Uncategorized**
50+
- Release swls-lang-rdf-base v0.1.0, swls-lang-turtle v0.1.1, swls-lang-jsonld v0.1.1, swls-lang-sparql v0.1.1, swls-lang-trig v0.1.0, swls v0.1.1 ([`3faf76b`](https://github.com/SemanticWebLanguageServer/swls/commit/3faf76b8fe7d6ebc11193368cc65ae1ae4b4b61f))
5051
- Release swls-lov v0.1.1, swls-core v0.1.1, components-rs v0.1.2, swls-lang-rdf-base v0.1.0, swls-lang-turtle v0.1.1, swls-lang-jsonld v0.1.1, swls-lang-sparql v0.1.1, swls-lang-trig v0.1.0, swls v0.1.1 ([`612f47d`](https://github.com/SemanticWebLanguageServer/swls/commit/612f47d34fbde7ad5025165735b0c19eb6d6b203))
5152
- Bump bevy_ecs to 0.18! ([`37ca762`](https://github.com/SemanticWebLanguageServer/swls/commit/37ca76298f9b43001bdcc6f9096a8611b8559128))
5253
- Make cjs work for vscode ([`35ff992`](https://github.com/SemanticWebLanguageServer/swls/commit/35ff9925b3957c491e3798a62ae4e4e32f88d40e))

lang-turtle/Cargo.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ license.workspace = true
1010
repository.workspace = true
1111
homepage.workspace = true
1212

13+
[features]
14+
default = ["agnostic"]
15+
shapes = []
16+
tokio = ["swls-core/tokio"]
17+
agnostic = ["swls-core/agnostic"]
18+
1319
[dependencies]
1420
async-trait.workspace = true
1521
bevy_ecs.workspace = true
@@ -23,7 +29,7 @@ tracing.workspace = true
2329

2430
swls-lov.workspace = true
2531
swls-lang-rdf-base.workspace = true
26-
swls-core = { workspace = true, features = ["shapes"] }
32+
swls-core = { workspace = true }
2733
rdf-parsers.workspace = true
2834
rowan = "0.16.1"
2935

0 commit comments

Comments
 (0)