Skip to content

Commit

Permalink
Auto merge of #29364 - delan:selectors-servo_arc, r=<try>
Browse files Browse the repository at this point in the history
Release selectors 0.24.0 and servo_arc 0.2.0

This patch extends #29361, bumping selectors to 0.24.0 and servo_arc to 0.2.0.

We’ll need to publish them too, in order to close #29105.

---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `___` with appropriate data: -->
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy` does not report any errors
- [x] These changes fix #29105 (GitHub issue number if applicable)

<!-- Either: -->
- [ ] There are tests for these changes OR
- [x] These changes do not require tests because there are no functional changes
  • Loading branch information
bors-servo committed Feb 16, 2023
2 parents 658cb98 + e82d786 commit 99d7d75
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions components/selectors/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "selectors"
version = "0.23.0"
version = "0.24.0"
authors = ["The Servo Project Developers"]
documentation = "https://docs.rs/selectors/"
description = "CSS Selectors matching for Rust"
Expand All @@ -26,10 +26,10 @@ fxhash = "0.2"
log = "0.4"
phf = "0.8"
precomputed-hash = "0.1"
servo_arc = { version = "0.1", path = "../servo_arc" }
servo_arc = { version = "0.2", path = "../servo_arc" }
smallvec = "1.0"
to_shmem = { path = "../to_shmem", optional = true }
to_shmem_derive = { path = "../to_shmem_derive", optional = true }
to_shmem = { version = "0.0.0", path = "../to_shmem", optional = true }
to_shmem_derive = { version = "0.0.0", path = "../to_shmem_derive", optional = true }

[build-dependencies]
phf_codegen = "0.8"
2 changes: 1 addition & 1 deletion components/servo_arc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "servo_arc"
version = "0.1.1"
version = "0.2.0"
authors = ["The Servo Project Developers"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/servo/servo"
Expand Down
2 changes: 1 addition & 1 deletion components/to_shmem/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "to_shmem"
version = "0.0.1"
version = "0.0.0"
authors = ["The Servo Project Developers"]
license = "MPL-2.0"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion components/to_shmem_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "to_shmem_derive"
version = "0.0.1"
version = "0.0.0"
authors = ["The Servo Project Developers"]
license = "MPL-2.0"
publish = false
Expand Down

0 comments on commit 99d7d75

Please sign in to comment.