Skip to content

Commit

Permalink
Bump package versions (#68)
Browse files Browse the repository at this point in the history
Seems unfortunate that all of the packages needed a bump, but it also
makes sense – how can an upstream package control a feature of a
downstream package if said package does not have the feature :)?
  • Loading branch information
nagisa committed Sep 14, 2023
1 parent 7fa3711 commit 7e0e25a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion make_sys.sh
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ sed -i "s/^\(version =\) \".*\" \(# AUTO-BUMP\)$/\1 \"$NEXT_SYS_VERSION\" \2/" \
# …and the versions in tracy-client.
sed -i "s/^\(version =\) \".*\" \(# AUTO-BUMP\)$/\1 \"$NEXT_CLIENT_VERSION\" \2/" \
tracy-client/Cargo.toml
sed -i "s/^\(version =\) \".*\" \(# AUTO-UPDATE\)$/\1 \">=0.17.0, <$NEXTNEXT_SYS_VERSION\" \2/" \
sed -i "s/^\(version =\) \".*\" \(# AUTO-UPDATE\)$/\1 \">=0.21.2, <$NEXTNEXT_SYS_VERSION\" \2/" \
tracy-client/Cargo.toml

# Make a commit that we'll PR
Expand Down
4 changes: 2 additions & 2 deletions tracing-tracy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tracing-tracy"
version = "0.10.3"
version = "0.10.4"
authors = ["Simonas Kazlauskas <[email protected]>"]
license = "MIT/Apache-2.0"
edition = "2018"
Expand All @@ -19,7 +19,7 @@ bench = true
[dependencies]
tracing-core = { version = "0.1", default-features = false, features = ["std"] }
tracing-subscriber = { version = "0.3", default-features = false, features = ["fmt", "registry"] }
client = { package = "tracy-client", path = "../tracy-client", version = "0.16.0", default-features = false }
client = { package = "tracy-client", path = "../tracy-client", version = "0.16.2", default-features = false }

[dev-dependencies]
tracing = { version = "0.1", default-features = false, features = ["std"] }
Expand Down
2 changes: 1 addition & 1 deletion tracy-client-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tracy-client-sys"
version = "0.21.1" # AUTO-BUMP
version = "0.21.2" # AUTO-BUMP
authors = ["Simonas Kazlauskas <[email protected]>"]
build = "build.rs"
license = "(MIT OR Apache-2.0) AND BSD-3-Clause"
Expand Down
4 changes: 2 additions & 2 deletions tracy-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tracy-client"
version = "0.16.1" # AUTO-BUMP
version = "0.16.2" # AUTO-BUMP
authors = ["Simonas Kazlauskas <[email protected]>"]
license = "MIT/Apache-2.0"
edition = "2018"
Expand Down Expand Up @@ -36,7 +36,7 @@ once_cell = "1.10"
[dependencies.sys]
path = "../tracy-client-sys"
package = "tracy-client-sys"
version = ">=0.17.0, <0.22.0" # AUTO-UPDATE
version = ">=0.21.2, <0.22.0" # AUTO-UPDATE
default-features = false
features = ["manual-lifetime", "delayed-init"]

Expand Down

0 comments on commit 7e0e25a

Please sign in to comment.