Skip to content

Commit

Permalink
Merge pull request #51 from bytestring-net/dev
Browse files Browse the repository at this point in the history
Fix semver
  • Loading branch information
IDEDARY authored Jul 4, 2024
2 parents 91e5489 + 394f4a2 commit 617e678
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
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

0 comments on commit 617e678

Please sign in to comment.