Skip to content

Commit 1d92a2f

Browse files
authored
Bump version to v0.2.0 (#11)
1 parent e7f088a commit 1d92a2f

File tree

3 files changed

+27
-16
lines changed

3 files changed

+27
-16
lines changed

.idea/rust.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ name = "bevy_fmod"
33
description = "Idiomatic FMOD in Bevy"
44
authors = ["Fabian 'Salzian' Fritzsche <bevy_fmod@salzian.dev>"]
55
repository = "https://github.com/salzian/bevy_fmod"
6-
version = "0.1.0"
6+
version = "0.2.0"
77
license = "MIT OR Apache-2.0"
88

99
[dependencies]
10-
anyhow = "1.0.69"
10+
anyhow = "1.0.75"
1111
bevy = { version = "0.11.2", default-features = false }
1212
bevy_mod_sysfail = "3.0.0"
13-
libfmod = { path = "../libfmod", version = "2.2.607" }
13+
libfmod = "2.2.607"
1414

1515
[dev-dependencies]
1616
# The hello_world example needs the default features of bevy

README.md

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# bevy_fmod
22

3-
![Latest compatible Bevy version](https://img.shields.io/badge/Bevy-0.11.0-informational)
4-
![Latest compatible FMOD version](https://img.shields.io/badge/FMOD-2.02.12-informational)
5-
![GitHub](https://img.shields.io/github/license/salzian/bevy_fmod)
6-
![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/salzian/bevy_fmod)
3+
![Latest compatible Bevy version][Bevy 0.11.2 img]
4+
![Latest compatible FMOD version][FMOD 2.02.12 img]
5+
![License][License img]
6+
![GitHub release][GitHub release img]
77

88
This crate aims to provide an idiomatic [Bevy] plugin for FMOD. This crate wraps [`libfmod`][libfmod].
99

@@ -52,20 +52,21 @@ project: `./demo_project`.
5252

5353
## Versioning
5454

55-
| bevy_fmod | Bevy | FMOD |
56-
|-----------|-------------------------------------------|-------------------------------------------------------|
57-
| 0.1.0 | [![0.11.0][Bevy 0.11.0 img]][Bevy 0.11.0] | [![2.02.12][FMOD 2.02.12 img]][FMOD revision history] |
58-
| 0.0.1 | [![0.10.0][Bevy 0.10.0 img]][Bevy 0.10.0] | [![2.02.12][FMOD 2.02.12 img]][FMOD revision history] |
55+
| bevy_fmod | Bevy | FMOD (tested version, newer may work) |
56+
|-----------|-----------------------------------------|-------------------------------------------------------|
57+
| 0.2.0 | [![0.11.2][Bevy 0.11.2 img]][Bevy 0.11] | [![2.02.12][FMOD 2.02.12 img]][FMOD revision history] |
58+
| 0.1.0 | [![0.10.0][Bevy 0.10.0 img]][Bevy 0.10] | [![2.02.12][FMOD 2.02.12 img]][FMOD revision history] |
59+
| 0.0.1 | [![0.10.0][Bevy 0.10.0 img]][Bevy 0.10] | [![2.02.12][FMOD 2.02.12 img]][FMOD revision history] |
5960

6061
[Bevy]: https://bevyengine.org
6162

62-
[Bevy 0.10.0]: https://bevyengine.org/news/bevy-0-10/
63+
[Bevy 0.10]: https://bevyengine.org/news/bevy-0-10/
6364

64-
[Bevy 0.11.0]: https://bevyengine.org/news/bevy-0-11/
65+
[Bevy 0.11]: https://bevyengine.org/news/bevy-0-11/
6566

66-
[Bevy 0.10.0 img]: https://img.shields.io/badge/Bevy-0.10.0-informational
67+
[Bevy 0.10.0 img]: https://img.shields.io/badge/Bevy-0.10.0-232326
6768

68-
[Bevy 0.11.0 img]: https://img.shields.io/badge/Bevy-0.11.0-informational
69+
[Bevy 0.11.2 img]: https://img.shields.io/badge/Bevy-0.11.2-232326
6970

7071
[FMOD licensing]: https://fmod.com/licensing
7172

@@ -75,10 +76,14 @@ project: `./demo_project`.
7576

7677
[FMOD revision history]: https://www.fmod.com/docs/2.02/studio/welcome-to-fmod-studio-revision-history.html
7778

78-
[FMOD 2.02.12 img]: https://img.shields.io/badge/FMOD-2.02.12-informational
79+
[FMOD 2.02.12 img]: https://img.shields.io/badge/FMOD-2.02.12-black
7980

8081
[libfmod]: https://github.com/lebedec/libfmod
8182

8283
[demo_project]: https://drive.google.com/file/d/13Mxq_jEHXDLuam6M9whNowGUf_KBGKTU/view?usp=sharing
8384

8485
[salzian]: https://salzian.dev
86+
87+
[License img]: https://img.shields.io/badge/License-MIT%20OR%20Apache%202.0-informal
88+
89+
[GitHub release img]: https://img.shields.io/github/v/release/Salzian/bevy_fmod?filter=v*

0 commit comments

Comments
 (0)