Skip to content

Commit a553ab0

Browse files
committed
update selenium manager version and rust changelog
1 parent 1e908d8 commit a553ab0

File tree

5 files changed

+80
-13
lines changed

5 files changed

+80
-13
lines changed

rust/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ rust_binary(
7777
name = "selenium-manager",
7878
srcs = ["src/main.rs"],
7979
edition = "2021",
80-
version = "0.4.31-nightly",
80+
version = "0.4.31",
8181
visibility = ["//visibility:public"],
8282
deps = [
8383
":selenium_manager",

rust/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
0.4.31
2+
======
3+
4+
15
0.4.30
26
======
37
* Remove check for old metadata file

rust/Cargo.Bazel.lock

Lines changed: 73 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"checksum": "f9b7e2302bd7b43ff0899cac357fbbfe0226873f02b610c0eb4246784e14e3b3",
2+
"checksum": "32b5f763a492ddd890526c2852cfd60d0dc82c544c928beb5066d99c2aa7003d",
33
"crates": {
44
"addr2line 0.21.0": {
55
"name": "addr2line",
@@ -2031,16 +2031,79 @@
20312031
"id": "jobserver 0.1.31",
20322032
"target": "jobserver"
20332033
},
2034-
{
2035-
"id": "libc 0.2.168",
2036-
"target": "libc"
2037-
},
20382034
{
20392035
"id": "shlex 1.3.0",
20402036
"target": "shlex"
20412037
}
20422038
],
2043-
"selects": {}
2039+
"selects": {
2040+
"aarch64-apple-darwin": [
2041+
{
2042+
"id": "libc 0.2.168",
2043+
"target": "libc"
2044+
}
2045+
],
2046+
"aarch64-unknown-linux-gnu": [
2047+
{
2048+
"id": "libc 0.2.168",
2049+
"target": "libc"
2050+
}
2051+
],
2052+
"aarch64-unknown-nixos-gnu": [
2053+
{
2054+
"id": "libc 0.2.168",
2055+
"target": "libc"
2056+
}
2057+
],
2058+
"arm-unknown-linux-gnueabi": [
2059+
{
2060+
"id": "libc 0.2.168",
2061+
"target": "libc"
2062+
}
2063+
],
2064+
"i686-unknown-linux-gnu": [
2065+
{
2066+
"id": "libc 0.2.168",
2067+
"target": "libc"
2068+
}
2069+
],
2070+
"powerpc-unknown-linux-gnu": [
2071+
{
2072+
"id": "libc 0.2.168",
2073+
"target": "libc"
2074+
}
2075+
],
2076+
"s390x-unknown-linux-gnu": [
2077+
{
2078+
"id": "libc 0.2.168",
2079+
"target": "libc"
2080+
}
2081+
],
2082+
"x86_64-apple-darwin": [
2083+
{
2084+
"id": "libc 0.2.168",
2085+
"target": "libc"
2086+
}
2087+
],
2088+
"x86_64-unknown-freebsd": [
2089+
{
2090+
"id": "libc 0.2.168",
2091+
"target": "libc"
2092+
}
2093+
],
2094+
"x86_64-unknown-linux-gnu": [
2095+
{
2096+
"id": "libc 0.2.168",
2097+
"target": "libc"
2098+
}
2099+
],
2100+
"x86_64-unknown-nixos-gnu": [
2101+
{
2102+
"id": "libc 0.2.168",
2103+
"target": "libc"
2104+
}
2105+
]
2106+
}
20442107
},
20452108
"edition": "2018",
20462109
"version": "1.1.30"
@@ -13356,9 +13419,9 @@
1335613419
],
1335713420
"license_file": "LICENSE"
1335813421
},
13359-
"selenium-manager 0.4.31-nightly": {
13422+
"selenium-manager 0.4.31": {
1336013423
"name": "selenium-manager",
13361-
"version": "0.4.31-nightly",
13424+
"version": "0.4.31",
1336213425
"package_url": "https://github.com/SeleniumHQ/selenium",
1336313426
"repository": null,
1336413427
"targets": [
@@ -13507,7 +13570,7 @@
1350713570
"selects": {}
1350813571
},
1350913572
"edition": "2021",
13510-
"version": "0.4.31-nightly"
13573+
"version": "0.4.31"
1351113574
},
1351213575
"license": "Apache-2.0",
1351313576
"license_ids": [
@@ -21396,7 +21459,7 @@
2139621459
},
2139721460
"binary_crates": [],
2139821461
"workspace_members": {
21399-
"selenium-manager 0.4.31-nightly": "rust"
21462+
"selenium-manager 0.4.31": "rust"
2140021463
},
2140121464
"conditions": {
2140221465
"aarch64-apple-darwin": [

rust/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "selenium-manager"
3-
version = "0.4.31-nightly" # don't forget to update rust/BUILD.bazel
3+
version = "0.4.31" # don't forget to update rust/BUILD.bazel
44
edition = "2021"
55
authors = ["Selenium <[email protected]"]
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)