Versioning policy
This commit is contained in:
parent
8b9c04e63a
commit
be7e4866a8
13
.github/workflows/clippy.yml
vendored
13
.github/workflows/clippy.yml
vendored
@ -1,13 +0,0 @@
|
|||||||
on: [push, pull_request]
|
|
||||||
name: Clippy
|
|
||||||
jobs:
|
|
||||||
clippy_check:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v1
|
|
||||||
- run: rustup component add clippy
|
|
||||||
- run: sudo apt-get update && sudo apt-get install libasound2-dev mesa-common-dev libx11-dev libxrandr-dev libxi-dev xorg-dev libgl1-mesa-dev libglu1-mesa-dev cmake llvm-dev libclang-dev clang -y
|
|
||||||
- uses: actions-rs/clippy-check@v1
|
|
||||||
with:
|
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
args: --all-features
|
|
@ -1,8 +1,7 @@
|
|||||||
# Direct raylib bindings for Rust
|
# Direct raylib bindings for Rust
|
||||||
[](https://crates.io/crates/raylib-ffi)
|
[](https://crates.io/crates/raylib-ffi)
|
||||||
[](https://docs.rs/raylib-ffi)
|
[](https://docs.rs/raylib-ffi)
|
||||||
[](https://github.com/Ewpratten/raylib-ffi/actions/workflows/build.yml)
|
[](https://github.com/Ewpratten/raylib-ffi/actions/workflows/build.yml)
|
||||||
[](https://github.com/Ewpratten/raylib-ffi/actions/workflows/clippy.yml)
|
|
||||||
|
|
||||||
`raylib-ffi` aims to provide a "no frills" direct binding to [raylib](https://www.raylib.com/) for rust developers. Unlike the [`raylib-rs` project](https://github.com/deltaphc/raylib-rs), this library trades high-level abstractions for staying truly up to date with upstream raylib (instead of a whole major version behind).
|
`raylib-ffi` aims to provide a "no frills" direct binding to [raylib](https://www.raylib.com/) for rust developers. Unlike the [`raylib-rs` project](https://github.com/deltaphc/raylib-rs), this library trades high-level abstractions for staying truly up to date with upstream raylib (instead of a whole major version behind).
|
||||||
|
|
||||||
@ -21,3 +20,9 @@ dnf install clang-devel alsa-lib-devel mesa-libGL-devel libX11-devel libXrandr-d
|
|||||||
```sh
|
```sh
|
||||||
cargo run --example basic
|
cargo run --example basic
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Versioning policy
|
||||||
|
|
||||||
|
`raylib-ffi` follow [SemVer](https://semver.org/).
|
||||||
|
|
||||||
|
The major and minor version numbers of a `raylib-ffi` will always match the version of raylib it was built against. The patch version may be incremented if a rust-only fix is needed at any point.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user