Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix semver #51

Merged
merged 1 commit into from
Jul 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

[workspace.package]
authors = ["IDEDARY"]
version = "0.1.1"
version = "0.2.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/bytestring-net/bevy-lunex"
Expand All @@ -26,8 +26,8 @@

[workspace.dependencies]

bevy_lunex = { path = "crates/bevy_lunex", version = "0.1.1" }
lunex_engine = { path = "crates/lunex_engine", version = "0.1.1" }
bevy_lunex = { path = "crates/bevy_lunex", version = "0.2.0" }
lunex_engine = { path = "crates/lunex_engine", version = "0.2.0" }

colored = { version = "^2.1" }
indexmap = { version = "^2.1" }
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ For production ready example/template check out [`Bevypunk source code`](https:/

| Bevy | Bevy Lunex |
|--------|-----------------|
| 0.14.0 | 0.1.1 |
| 0.14.0 | 0.2.0 |
| 0.13.2 | 0.1.0 |
| 0.12.1 | 0.0.10 - 0.0.11 |
| 0.12.0 | 0.0.7 - 0.0.9 |
Expand Down
2 changes: 1 addition & 1 deletion crates/bevy_lunex/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ For production ready example/template check out [`Bevypunk source code`](https:/

| Bevy | Bevy Lunex |
|--------|-----------------|
| 0.14.0 | 0.1.1 |
| 0.14.0 | 0.2.0 |
| 0.13.2 | 0.1.0 |
| 0.12.1 | 0.0.10 - 0.0.11 |
| 0.12.0 | 0.0.7 - 0.0.9 |
Expand Down
4 changes: 2 additions & 2 deletions docs/src/2_installation.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Installation

Installing `Bevy_Lunex` is straightforward, just like any other Rust crate. Ensure that the version is `0.1.1` and not `0.0.X`.
Installing `Bevy_Lunex` is straightforward, just like any other Rust crate.

Add the following to your `Cargo.toml`:

```toml
[dependencies]
bevy_lunex = { version = "0.1.1" }
bevy_lunex = { version = "0.2.0" }
```

Alternatively, you can use the latest bleeding edge version from the Git repository:
Expand Down