See FEATURES.md
. When requesting or implementing a new Winit feature, you should
consider whether or not it's directly related to window creation or input handling. If it isn't, it
may be worth creating a separate crate that extends Winit's API to add that functionality.
When reporting an issue, in order to help the maintainers understand what the problem is, please make your description of the issue as detailed as possible:
- if it is a bug, please provide a clear explanation of what happens, what should happen, and how to reproduce the issue, ideally by providing a minimal program exhibiting the problem
- if it is a feature request, please provide a clear argumentation about why you believe this feature should be supported by winit
When making a code contribution to winit, before opening your pull request, please make sure that:
-
your patch builds with Winit's minimal supported rust version - Rust 1.70.
-
you tested your modifications on all the platforms impacted, or if not possible, detail which platforms were not tested, and what should be tested, so that a maintainer or another contributor can test them
-
you updated any relevant documentation in winit
-
you left comments in your code explaining any part that is not straightforward, so that the maintainers and future contributors don't have to try to guess what your code is supposed to do
-
your PR adds an entry to the current changelog if the introduced change is relevant to winit users.
You needn't worry about the added entry causing conflicts, the maintainer that merges the PR will handle those for you when merging (see below).
-
if your PR affects the platform compatibility of one or more features or adds another feature, the relevant sections in
FEATURES.md
should be updated.
Once your PR is open, you can ask for a review by a maintainer of your platform. Winit's merging policy is that a PR must be approved by at least two maintainers of winit before being merged, including at least a maintainer of the platform (a maintainer making a PR themselves counts as approving it).
Once your PR is deemed ready, the merging maintainer will take care of resolving conflicts in the
changelog
module (but you must resolve other conflicts yourself). Doing this requires that you check the
"give contributors write access to the branch" checkbox when creating the PR.
The current maintainers for each platform are listed in the CODEOWNERS file.
Given that winit is a widely used library, we should be able to make a patch releases at any time we want without blocking the development of new features.
To achieve these goals, a new branch is created for every new release. Releases and later patch releases are committed and tagged in this branch.
The exact steps for an exemplary 0.2.0
release might look like this:
- Initially, the version on the latest master is
0.1.0
- A new
v0.2.x
branch is created for the release - Update released
cfg_attr
insrc/changelog/mod.rs
tov0.2.md
- Move entries from
src/changelog/unreleased.md
intosrc/changelog/v0.2.md
- In the branch, the version is bumped to
v0.2.0
- The new commit in the branch is tagged
v0.2.0
- The version is pushed to crates.io
- A GitHub release is created for the
v0.2.0
tag - On master, the version is bumped to
0.2.0
, and the changelog is updated
When doing a patch release, the process is similar:
- Initially, the version of the latest release is
0.2.0
- Checkout the
v0.2.x
branch - Cherry-pick the required non-breaking changes into the
v0.2.x
- Follow steps 4-9 of the regular release example