Update to 0.16

This commit is contained in:
Gwilym Inzani 2023-07-18 21:51:31 +01:00
parent a91069eac2
commit c2e7a3b9b4
4 changed files with 11 additions and 11 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "agb_tracker_interop"
version = "0.15.0"
version = "0.16.0"
edition = "2021"
license = "MPL-2.0"
description = "Library for interop between tracker plugins and agb itself. Designed for use with the agb library for the Game Boy Advance."
@ -14,4 +14,4 @@ std = []
[dependencies]
quote = { version = "1", optional = true }
proc-macro2 = { version = "1", optional = true }
agb_fixnum = { version = "0.15.0", path = "../../agb-fixnum" }
agb_fixnum = { version = "0.16.0", path = "../../agb-fixnum" }

View file

@ -1,6 +1,6 @@
[package]
name = "agb_tracker"
version = "0.15.0"
version = "0.16.0"
edition = "2021"
license = "MPL-2.0"
description = "Library for playing tracker music. Designed for use with the agb library for the Game Boy Advance."
@ -11,9 +11,9 @@ default = ["xm"]
xm = ["dep:agb_xm"]
[dependencies]
agb_xm = { version = "0.15.0", path = "../agb-xm", optional = true }
agb = { version = "0.15.0", path = "../../agb" }
agb_tracker_interop = { version = "0.15.0", path = "../agb-tracker-interop", default-features = false }
agb_xm = { version = "0.16.0", path = "../agb-xm", optional = true }
agb = { version = "0.16.0", path = "../../agb" }
agb_tracker_interop = { version = "0.16.0", path = "../agb-tracker-interop", default-features = false }
[profile.dev]
opt-level = 3

View file

@ -1,6 +1,6 @@
[package]
name = "agb_xm_core"
version = "0.15.0"
version = "0.16.0"
authors = ["Gwilym Kuiper <gw@ilym.me>"]
edition = "2021"
license = "MPL-2.0"
@ -13,7 +13,7 @@ proc-macro2 = "1"
quote = "1"
syn = "2"
agb_tracker_interop = { version = "0.15.0", path = "../agb-tracker-interop" }
agb_fixnum = { version = "0.15.0", path = "../../agb-fixnum" }
agb_tracker_interop = { version = "0.16.0", path = "../agb-tracker-interop" }
agb_fixnum = { version = "0.16.0", path = "../../agb-fixnum" }
xmrs = "0.3"

View file

@ -1,6 +1,6 @@
[package]
name = "agb_xm"
version = "0.15.0"
version = "0.16.0"
authors = ["Gwilym Kuiper <gw@ilym.me>"]
edition = "2021"
license = "MPL-2.0"
@ -11,6 +11,6 @@ repository = "https://github.com/agbrs/agb"
proc-macro = true
[dependencies]
agb_xm_core = { version = "0.15.0", path = "../agb-xm-core" }
agb_xm_core = { version = "0.16.0", path = "../agb-xm-core" }
proc-macro-error = "1"
proc-macro2 = "1"