Skip to content

Commit

Permalink
v0.1.0 post-release (#180)
Browse files Browse the repository at this point in the history
This, following the [release
checklist](https://github.com/TheBevyFlock/bevy_cli/blob/663298e1e24a6422abd001b6142dc53f371c3bcd/bevy_lint/docs/release.md),
updates `bevy_lint` to v0.2.0-dev. I also added some missing information
to the release checklist, based off of my experience releasing v0.1.0.

Once this is merged, the feature freeze will be lifted, letting #164 and
#173 be merged.
  • Loading branch information
BD103 authored Nov 17, 2024
1 parent 663298e commit 00d3bd7
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

4 changes: 4 additions & 0 deletions bevy_lint/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ The format is based on [Keep a Changelog], and this project adheres to [Semantic
[Keep a Changelog]: https://keepachangelog.com/en/1.1.0/
[Semantic Versioning]: https://semver.org/spec/v2.0.0.html

## [Unreleased]

**All Changes**: [`lint-v0.1.0...main`](https://github.com/TheBevyFlock/bevy_cli/compare/lint-v0.1.0...main)

## 0.1.0 - 2024-11-17

**All Changes**: [`17834eb...lint-v0.1.0`](https://github.com/TheBevyFlock/bevy_cli/compare/17834eb...lint-v0.1.0)
Expand Down
2 changes: 1 addition & 1 deletion bevy_lint/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bevy_lint"
version = "0.1.0"
version = "0.2.0-dev"
authors = ["BD103"]
edition = "2021"
description = "A collection of lints for the Bevy game engine"
Expand Down
1 change: 1 addition & 0 deletions bevy_lint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ There are several other ways to toggle lints, but they have varying levels of su

|`bevy_lint` Version|Rust Version|Rustup Toolchain|Bevy Version|
|-|-|-|-|
|0.2.0-dev|1.84.0|`nightly-2024-11-14`|0.14|
|0.1.0|1.84.0|`nightly-2024-11-14`|0.14|

The Rust version in the above table specifies what [version of the Rust language](https://github.com/rust-lang/rust/releases) can be compiled with `bevy_lint`. Code written for a later version of Rust may not compile. (This is not usually an issue, though, because `bevy_lint`'s Rust version is kept 1 to 2 releases ahead of stable Rust.)
Expand Down
13 changes: 10 additions & 3 deletions bevy_lint/docs/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@
````markdown
<!-- One-sentence summary of changes. What awesome features can we spotlight? What critical bugs were fixed? -->

You can find the live documentation for this release [here](https://thebevyflock.github.io/bevy_cli/bevy_lint/).

> [!WARNING]
>
> This is an unofficial community project, hacked upon by the Bevy CLI working group until it is eventually upstreamed into the main [Bevy Engine organization](https://github.com/bevyengine). Pardon our rough edges, and please consider [submitting an issue](https://github.com/TheBevyFlock/bevy_cli/issues) if you run into trouble!

<!-- You can refer to the compatibility table in `bevy_lint/README.md` for the following two values. -->

This release uses the <!-- `nightly-YYYY-MM-DD` --> toolchain, based on Rust <!-- 1.XX.Y -->. You can install it from Git with the following commands:
Expand All @@ -39,7 +45,7 @@ rustup run nightly-YYYY-MM-DD cargo install \
bevy_lint
```

<!-- Paste the changelog for this release here. -->
<!-- Paste the changelog for this release here. Make sure to include the "All Changes" link. :) -->
````

5. Check the pre-release box if this is an alpha release, then click "Publish release"!
Expand All @@ -58,5 +64,6 @@ rustup run nightly-YYYY-MM-DD cargo install \
```

2. Bump the version in [`Cargo.toml`](../Cargo.toml) to the next `-dev` version, and ensure [`Cargo.lock`](../../Cargo.lock) also updates.
3. Commit all of these changes and open a pull request.
4. Merge the PR after it has been approved, unblocking frozen pull requests.
3. Add a new row to the compatibility table for the new `-dev` version in [`README.md`](../README.md).
4. Commit all of these changes and open a pull request.
5. Merge the PR after it has been approved, unblocking frozen pull requests.

0 comments on commit 00d3bd7

Please sign in to comment.