Skip to content

Commit

Permalink
Import of v0.32.2 (#2083)
Browse files Browse the repository at this point in the history
  • Loading branch information
whimboo committed Feb 8, 2023
1 parent 752316f commit 96e044c
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 23 deletions.
8 changes: 8 additions & 0 deletions CHANGES.md
Expand Up @@ -3,6 +3,14 @@

All notable changes to this program are documented in this file.

## 0.32.2 (2023-02-08, `602aa16c20d4`)

### Fixed

- With the release of geckodriver 0.32.1 the marionette crate was inappropriately
bumped to a semver incompatible version and caused `cargo install geckodriver`
to fail for older releases.

## 0.32.1 (2023-02-02, `b7f075124503`)

### Fixed
Expand Down
26 changes: 13 additions & 13 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 Cargo.toml
@@ -1,7 +1,7 @@
[package]
edition = "2018"
name = "geckodriver"
version = "0.32.1"
version = "0.32.2"
authors = ["Mozilla"]
include = [
"/.cargo",
Expand All @@ -27,11 +27,11 @@ clap = { version = "~3.1", default-features = false, features = ["cargo", "std",
hyper = "0.14"
lazy_static = "1.0"
log = { version = "0.4", features = ["std"] }
marionette = "0.2.1"
marionette = "0.3.0"
mozdevice = "0.5.1"
mozprofile = "0.9.1"
mozrunner = "0.15.0"
mozversion = "0.5.0"
mozrunner = "0.15.1"
mozversion = "0.5.1"
regex = { version="1.0", default-features = false, features = ["perf", "std"] }
serde = "1.0"
serde_derive = "1.0"
Expand Down
18 changes: 13 additions & 5 deletions doc/Releasing.md
Expand Up @@ -45,23 +45,31 @@ you can skip them:

For each crate:

1. Bump the version number in `Cargo.toml` based on [semantic versioning rules],
1. Change into the crates folder.
2. Bump the version number in `Cargo.toml` based on [semantic versioning rules],
and also update the version dependency for other in-tree crates using the
currently modified crate. Note that running `cargo update` (see next step)
will fail if you missed updating a crate's dependency.
2. Update the crate: `cargo update -p <crate name>`
3. We also publish audit information for the crates based on Mozilla's
will fail if you missed updating a crate's dependency. Also use the
[cargo-semver-checks] command to validate the version change:

```shell
% cargo semver-checks check-release
```

3. Update the crate: `cargo update -p <crate name>`
4. We also publish audit information for the crates based on Mozilla's
[audit criteria], and that must be updated for each release. To do that run:

```shell
% ./mach cargo vet certify <name> <version> --force
```

4. Commit the changes for the modified [Cargo.toml] files, [Cargo.lock] and the
5. Commit the changes for the modified [Cargo.toml] files, [Cargo.lock] and the
[supply-chain/] folder, which can be found in the repositories root folder.
Use a commit message like `Bug XYZ - [rust-<name>] Release version <version>`.

[semantic versioning rules]: https://semver.org/
[cargo-semver-checks]: https://crates.io/crates/cargo-semver-checks
[audit criteria]: https://mozilla.github.io/cargo-vet/audit-criteria.html
[Cargo.toml]: https://searchfox.org/mozilla-central/source/testing/geckodriver/Cargo.toml
[Cargo.lock]: https://searchfox.org/mozilla-central/source/Cargo.lock
Expand Down
5 changes: 5 additions & 0 deletions doc/Support.md
Expand Up @@ -22,6 +22,11 @@ and required versions of Selenium and Firefox:
<th>max
</tr>
</thead>
<tr>
<td>0.32.2
<td>≥ 3.11 (3.14 Python)
<td>102 ESR
<td>n/a
<tr>
<td>0.32.1
<td>≥ 3.11 (3.14 Python)
Expand Down
2 changes: 1 addition & 1 deletion marionette/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "marionette"
version = "0.2.1"
version = "0.3.0"
authors = ["Mozilla"]
description = "Library implementing the client side of Gecko's Marionette remote automation protocol."
edition = "2018"
Expand Down

0 comments on commit 96e044c

Please sign in to comment.