Skip to content

Commit

Permalink
chore: prepare next release (#549)
Browse files Browse the repository at this point in the history
Preparing next release
This PR has been auto-generated

Co-authored-by: Mun Auto Releaser <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Dec 28, 2023
1 parent f3c5049 commit 3f3055d
Show file tree
Hide file tree
Showing 21 changed files with 79 additions and 79 deletions.
18 changes: 9 additions & 9 deletions crates/mun/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mun"
version = "0.5.0-dev"
version = "0.5.0"
authors = ["The Mun Team <team@mun-lang.org>"]
edition = "2021"
description = "Command-line interface for compiling, monitoring and running Mun code"
Expand All @@ -18,12 +18,12 @@ anyhow = { version = "1.0.75", default-features = false }
clap = { version = "4.4.11", default-features = false, features = ["std", "derive"] }
log = { version = "0.4", default-features = false }
pretty_env_logger = { version = "0.5.0", default-features = false }
mun_abi = { version = "0.5.0-dev", path = "../mun_abi" }
mun_compiler = { version = "0.5.0-dev", path = "../mun_compiler" }
mun_compiler_daemon = { version = "0.5.0-dev", path = "../mun_compiler_daemon" }
mun_runtime = { version = "0.5.0-dev", path = "../mun_runtime" }
mun_language_server = { version = "0.5.0-dev", path = "../mun_language_server" }
mun_project = { version = "0.5.0-dev", path = "../mun_project" }
mun_abi = { version = "0.5.0", path = "../mun_abi" }
mun_compiler = { version = "0.5.0", path = "../mun_compiler" }
mun_compiler_daemon = { version = "0.5.0", path = "../mun_compiler_daemon" }
mun_runtime = { version = "0.5.0", path = "../mun_runtime" }
mun_language_server = { version = "0.5.0", path = "../mun_language_server" }
mun_project = { version = "0.5.0", path = "../mun_project" }

[dev-dependencies.cargo-husky]
version = "1"
Expand All @@ -32,7 +32,7 @@ features = ["precommit-hook", "run-cargo-test", "run-cargo-fmt", "run-cargo-clip

[dev-dependencies]
tempfile = "3.8"
mun_skeptic = { path = "../mun_skeptic", version = "0.5.0-dev" }
mun_skeptic = { path = "../mun_skeptic", version = "0.5.0" }

[build-dependencies]
mun_skeptic = { path = "../mun_skeptic", version = "0.5.0-dev" }
mun_skeptic = { path = "../mun_skeptic", version = "0.5.0" }
2 changes: 1 addition & 1 deletion crates/mun_abi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mun_abi"
version = "0.5.0-dev"
version = "0.5.0"
authors = ["The Mun Team <team@mun-lang.org>"]
edition = "2021"
description = "Rust wrapper for the Mun ABI"
Expand Down
2 changes: 1 addition & 1 deletion crates/mun_capi_utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mun_capi_utils"
version = "0.5.0-dev"
version = "0.5.0"
edition = "2021"
authors = ["The Mun Team <team@mun-lang.org>"]
description = "Common functionality between C api crates."
Expand Down
12 changes: 6 additions & 6 deletions crates/mun_codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mun_codegen"
version = "0.5.0-dev"
version = "0.5.0"
authors = ["The Mun Team <team@mun-lang.org>"]
edition = "2021"
description = "LLVM IR code generation for Mun"
Expand All @@ -13,22 +13,22 @@ keywords = ["game", "hot-reloading", "language", "mun", "scripting"]
categories = ["Game development", "Mun"]

[dependencies]
mun_abi = { version = "0.5.0-dev", path = "../mun_abi" }
mun_abi = { version = "0.5.0", path = "../mun_abi" }
anyhow = { version = "1.0.75", default-features = false, features = ["std"] }
apple-codesign = { version = "0.26.0", default-features = false, git = "https://github.com/baszalmstra/apple-platform-rs.git", branch = "fix/disabled_features" }
array-init = { version = "2.1.0", default-features = false }
by_address = { version = "1.1.0", default-features = false }
bytemuck = { version = "1.14.0", default-features = false }
mun_hir = { version = "0.5.0-dev", path = "../mun_hir" }
mun_hir = { version = "0.5.0", path = "../mun_hir" }
inkwell = { version = "0.2.0", default-features = false, features = ["llvm14-0", "target-x86", "target-aarch64"] }
itertools = { version = "0.12.0", default-features = false }
mun_codegen_macros = { version = "0.5.0-dev", path = "../mun_codegen_macros" }
mun_target = { version = "0.5.0-dev", path = "../mun_target" }
mun_codegen_macros = { version = "0.5.0", path = "../mun_codegen_macros" }
mun_target = { version = "0.5.0", path = "../mun_target" }
once_cell = { version = "1.19.0", default-features = false }
lld_rs = { version = "140.0.0", default-features = false }
parking_lot = { version = "0.12.1", default-features = false }
paste = { version = "1.0.14", default-features = false }
mun_paths = { version = "0.5.0-dev", path = "../mun_paths" }
mun_paths = { version = "0.5.0", path = "../mun_paths" }
rustc-hash = { version = "1.1.0", default-features = false }
salsa = { version = "0.16.1", default-features = false }
smallvec = { version = "1.11.2", features = ["union"], default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion crates/mun_codegen_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mun_codegen_macros"
version = "0.5.0-dev"
version = "0.5.0"
authors = ["The Mun Team <team@mun-lang.org>"]
edition = "2021"
description = "Macros used by mun code generation"
Expand Down
16 changes: 8 additions & 8 deletions crates/mun_compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mun_compiler"
version = "0.5.0-dev"
version = "0.5.0"
authors = ["The Mun Team <team@mun-lang.org>"]
edition = "2021"
description = "Binary compilation functionality for Mun"
Expand All @@ -13,13 +13,13 @@ keywords = ["game", "hot-reloading", "language", "mun", "scripting"]
categories = ["game-development", "mun"]

[dependencies]
mun_codegen = { version = "0.5.0-dev", path = "../mun_codegen" }
mun_syntax = { version = "0.5.0-dev", path = "../mun_syntax" }
mun_hir = { version = "0.5.0-dev", path = "../mun_hir" }
mun_paths = { version = "0.5.0-dev", path = "../mun_paths" }
mun_target = { version = "0.5.0-dev", path = "../mun_target" }
mun_project = { version = "0.5.0-dev", path = "../mun_project" }
mun_diagnostics = { version = "0.5.0-dev", path = "../mun_diagnostics" }
mun_codegen = { version = "0.5.0", path = "../mun_codegen" }
mun_syntax = { version = "0.5.0", path = "../mun_syntax" }
mun_hir = { version = "0.5.0", path = "../mun_hir" }
mun_paths = { version = "0.5.0", path = "../mun_paths" }
mun_target = { version = "0.5.0", path = "../mun_target" }
mun_project = { version = "0.5.0", path = "../mun_project" }
mun_diagnostics = { version = "0.5.0", path = "../mun_diagnostics" }
annotate-snippets = { version = "0.10.0", default-features = false }
anyhow = { version = "1.0.75", default-features = false }
lockfile = { version = "0.4.0", default-features = false }
Expand Down
10 changes: 5 additions & 5 deletions crates/mun_compiler_daemon/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mun_compiler_daemon"
version = "0.5.0-dev"
version = "0.5.0"
authors = ["The Mun Team <team@mun-lang.org>"]
edition = "2021"
description = "Functionality for continuously monitoring Mun source files for changes and triggering recompilation"
Expand All @@ -16,8 +16,8 @@ categories = ["game-development", "mun"]
anyhow = { version = "1.0.75", default-features = false }
ctrlc = { version = "3.4", default-features = false }
log = { version = "0.4", default-features = false }
mun_codegen = { version = "0.5.0-dev", path = "../mun_codegen" }
mun_compiler = { version = "0.5.0-dev", path = "../mun_compiler" }
mun_project = { version = "0.5.0-dev", path = "../mun_project" }
mun_hir = { version = "0.5.0-dev", path = "../mun_hir" }
mun_codegen = { version = "0.5.0", path = "../mun_codegen" }
mun_compiler = { version = "0.5.0", path = "../mun_compiler" }
mun_project = { version = "0.5.0", path = "../mun_project" }
mun_hir = { version = "0.5.0", path = "../mun_hir" }
notify = { version = "4.0", default-features = false }
6 changes: 3 additions & 3 deletions crates/mun_diagnostics/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mun_diagnostics"
version = "0.5.0-dev"
version = "0.5.0"
authors = ["The Mun Team <team@mun-lang.org>"]
edition = "2021"
description = "Provides in-depth diagnostic information for compiler errors"
Expand All @@ -13,5 +13,5 @@ keywords = ["game", "hot-reloading", "language", "mun", "diagnostics"]
categories = ["game-development", "mun"]

[dependencies]
mun_hir = { version = "0.5.0-dev", path = "../mun_hir" }
mun_syntax = { version = "0.5.0-dev", path = "../mun_syntax" }
mun_hir = { version = "0.5.0", path = "../mun_hir" }
mun_syntax = { version = "0.5.0", path = "../mun_syntax" }
8 changes: 4 additions & 4 deletions crates/mun_hir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mun_hir"
version = "0.5.0-dev"
version = "0.5.0"
authors = ["The Mun Team <team@mun-lang.org>"]
edition = "2021"
description = "Provides high-level intermediate representation of Mun code"
Expand All @@ -13,9 +13,9 @@ keywords = ["game", "hot-reloading", "language", "mun", "scripting"]
categories = ["game-development", "mun"]

[dependencies]
mun_syntax = { version = "0.5.0-dev", path = "../mun_syntax" }
mun_target = { version = "0.5.0-dev", path = "../mun_target" }
mun_paths = { version = "0.5.0-dev", path="../mun_paths" }
mun_syntax = { version = "0.5.0", path = "../mun_syntax" }
mun_target = { version = "0.5.0", path = "../mun_target" }
mun_paths = { version = "0.5.0", path="../mun_paths" }
drop_bomb = { version = "0.1.5", default-features = false }
either = { version = "1.9.0", default-features = false }
ena = { version = "0.14", default-features = false }
Expand Down
16 changes: 8 additions & 8 deletions crates/mun_language_server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mun_language_server"
version = "0.5.0-dev"
version = "0.5.0"
authors = ["The Mun Team <team@mun-lang.org>"]
edition = "2021"
description = "Provides a language server protocol server for the Mun language"
Expand All @@ -13,13 +13,13 @@ keywords = ["game", "hot-reloading", "language", "mun", "scripting"]
categories = ["game-development", "mun"]

[dependencies]
mun_hir = { version = "0.5.0-dev", path="../mun_hir" }
mun_vfs = { version = "0.5.0-dev", path = "../mun_vfs" }
mun_project = { version = "0.5.0-dev", path = "../mun_project" }
mun_target = { version = "0.5.0-dev", path = "../mun_target" }
mun_syntax = { version = "0.5.0-dev", path = "../mun_syntax" }
mun_diagnostics = { version = "0.5.0-dev", path = "../mun_diagnostics" }
mun_paths = { version = "0.5.0-dev", path="../mun_paths" }
mun_hir = { version = "0.5.0", path="../mun_hir" }
mun_vfs = { version = "0.5.0", path = "../mun_vfs" }
mun_project = { version = "0.5.0", path = "../mun_project" }
mun_target = { version = "0.5.0", path = "../mun_target" }
mun_syntax = { version = "0.5.0", path = "../mun_syntax" }
mun_diagnostics = { version = "0.5.0", path = "../mun_diagnostics" }
mun_paths = { version = "0.5.0", path="../mun_paths" }
anyhow = { version = "1.0", default-features = false, features=["std"] }
crossbeam-channel = { version = "0.5.9", default-features = false }
log = { version = "0.4", default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions crates/mun_libloader/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mun_libloader"
version = "0.5.0-dev"
version = "0.5.0"
authors = ["The Mun Team <team@mun-lang.org>"]
edition = "2021"
description = "Functionality for loading Mun libraries"
Expand All @@ -13,7 +13,7 @@ keywords = ["game", "hot-reloading", "language", "mun", "scripting"]
categories = ["game-development", "mun"]

[dependencies]
mun_abi = { version = "0.5.0-dev", path = "../mun_abi" }
mun_abi = { version = "0.5.0", path = "../mun_abi" }
anyhow = { version = "1.0", default-features = false, features = ["std"] }
libloading = { version = "0.8.1", default-features = false }
tempfile = { version = "3", default-features = false }
Expand Down
8 changes: 4 additions & 4 deletions crates/mun_memory/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mun_memory"
version = "0.5.0-dev"
version = "0.5.0"
authors = ["The Mun Team <team@mun-lang.org>"]
edition = "2021"
description = "Memory management functionality for Mun"
Expand All @@ -13,8 +13,8 @@ keywords = ["game", "hot-reloading", "language", "mun", "scripting"]
categories = ["game-development", "mun"]

[dependencies]
mun_abi = { version = "0.5.0-dev", path = "../mun_abi" }
mun_capi_utils = { version = "0.5.0-dev", path = "../mun_capi_utils" }
mun_abi = { version = "0.5.0", path = "../mun_abi" }
mun_capi_utils = { version = "0.5.0", path = "../mun_capi_utils" }
itertools = { version = "0.12.0", default-features = false }
lazy_static = { version = "1.4.0", default-features = false }
once_cell = { version = "1.19.0", default-features = false }
Expand All @@ -23,6 +23,6 @@ rustc-hash = { version = "1.1", default-features = false, features = ["std"] }
thiserror = { version = "1.0.51", default-features = false }

[dev-dependencies]
mun_capi_utils = { version = "0.5.0-dev", path = "../mun_capi_utils", features = ["insta"] }
mun_capi_utils = { version = "0.5.0", path = "../mun_capi_utils", features = ["insta"] }
insta = { version = "1.34.0", default-features = false, features = ["ron"] }
paste = { version = "1.0", default-features = false }
2 changes: 1 addition & 1 deletion crates/mun_paths/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mun_paths"
version = "0.5.0-dev"
version = "0.5.0"
authors = ["The Mun Team <team@mun-lang.org>"]
edition = "2021"
description = "Provides convenience structures for handling relative- and absolute paths"
Expand Down
4 changes: 2 additions & 2 deletions crates/mun_project/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mun_project"
version = "0.5.0-dev"
version = "0.5.0"
authors = ["The Mun Team <team@mun-lang.org>"]
edition = "2021"
description = "Provides convenience structures for Mun projects"
Expand All @@ -13,7 +13,7 @@ keywords = ["game", "hot-reloading", "language", "mun", "scripting"]
categories = ["game-development", "mun"]

[dependencies]
mun_paths = { version = "0.5.0-dev", path = "../mun_paths" }
mun_paths = { version = "0.5.0", path = "../mun_paths" }
anyhow = { version = "1.0", default-features = false }
rustc-hash = { version = "1.1.0", default-features = false, features = ["std"] }
semver = { version = "1.0", default-features = false, features = ["serde"] }
Expand Down
12 changes: 6 additions & 6 deletions crates/mun_runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mun_runtime"
version = "0.5.0-dev"
version = "0.5.0"
authors = ["The Mun Team <team@mun-lang.org>"]
edition = "2021"
description = "A runtime for hot reloading and invoking Mun from Rust"
Expand All @@ -13,11 +13,11 @@ keywords = ["game", "hot-reloading", "language", "mun", "scripting"]
categories = ["game-development", "mun"]

[dependencies]
mun_abi = { version = "0.5.0-dev", path = "../mun_abi" }
mun_libloader = { version = "0.5.0-dev", path = "../mun_libloader" }
mun_capi_utils = { version = "0.5.0-dev", path = "../mun_capi_utils" }
mun_memory = { version = "0.5.0-dev", path = "../mun_memory" }
mun_project = { version = "0.5.0-dev", path = "../mun_project" }
mun_abi = { version = "0.5.0", path = "../mun_abi" }
mun_libloader = { version = "0.5.0", path = "../mun_libloader" }
mun_capi_utils = { version = "0.5.0", path = "../mun_capi_utils" }
mun_memory = { version = "0.5.0", path = "../mun_memory" }
mun_project = { version = "0.5.0", path = "../mun_project" }
itertools = { version = "0.12.0", default-features = false, features = ["use_alloc"] }
log = { version = "0.4", default-features = false }
notify = "5.2.0"
Expand Down
10 changes: 5 additions & 5 deletions crates/mun_runtime_capi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mun_runtime_capi"
version = "0.5.0-dev"
version = "0.5.0"
authors = ["The Mun Team <team@mun-lang.org>"]
edition = "2021"
description = "Provides a C API for the Mun runtime"
Expand All @@ -17,10 +17,10 @@ name = "mun_runtime"
crate-type = ["cdylib"]

[dependencies]
mun_abi = { version = "0.5.0-dev", path = "../mun_abi" }
mun_memory = { version = "0.5.0-dev", path = "../mun_memory" }
mun_runtime = { version = "0.5.0-dev", path = "../mun_runtime" }
mun_capi_utils = { version = "0.5.0-dev", path = "../mun_capi_utils", features=["insta"]}
mun_abi = { version = "0.5.0", path = "../mun_abi" }
mun_memory = { version = "0.5.0", path = "../mun_memory" }
mun_runtime = { version = "0.5.0", path = "../mun_runtime" }
mun_capi_utils = { version = "0.5.0", path = "../mun_capi_utils", features=["insta"]}
insta = { version = "1.34.0", default-features = false, features = ["ron"] }

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions crates/mun_skeptic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mun_skeptic"
version = "0.5.0-dev"
version = "0.5.0"
authors = ["The Mun Team <team@mun-lang.org>"]
edition = "2021"
description = "Provides the ability to test Mun code snippets in an mdbook"
Expand All @@ -19,6 +19,6 @@ bytecount = { version = "0.6.7", default-features = false }
itertools = { version = "0.12.0", default-features = false }
mdbook = { version = "0.4.36", default-features = false }
pulldown-cmark = { version = "0.9.3", default-features = false }
mun_compiler = { version = "0.5.0-dev", path = "../mun_compiler" }
mun_runtime = { version = "0.5.0-dev", path = "../mun_runtime" }
mun_compiler = { version = "0.5.0", path = "../mun_compiler" }
mun_runtime = { version = "0.5.0", path = "../mun_runtime" }
tempdir = { version = "0.3.7", default-features = false }
4 changes: 2 additions & 2 deletions crates/mun_syntax/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mun_syntax"
version = "0.5.0-dev"
version = "0.5.0"
authors = ["The Mun Team <team@mun-lang.org>"]
edition = "2021"
description = "Parsing functionality for the Mun programming language"
Expand All @@ -13,7 +13,7 @@ keywords = ["game", "hot-reloading", "language", "mun", "scripting"]
categories = ["game-development", "mun"]

[dependencies]
mun_abi = { version = "0.5.0-dev", path = "../mun_abi" }
mun_abi = { version = "0.5.0", path = "../mun_abi" }
drop_bomb = { version = "0.1.5", default-features = false }
itertools = { version = "0.12.0", default-features = false }
ra_ap_text_edit = { version = "0.0.190", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion crates/mun_target/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mun_target"
version = "0.5.0-dev"
version = "0.5.0"
authors = ["The Mun Team <team@mun-lang.org>"]
edition = "2021"
description = "Describes compilation targets for Mun"
Expand Down
10 changes: 5 additions & 5 deletions crates/mun_test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mun_test"
version = "0.5.0-dev"
version = "0.5.0"
authors = ["The Mun Team <team@mun-lang.org>"]
edition = "2021"
description = "Functionality for testing Mun code"
Expand All @@ -13,10 +13,10 @@ keywords = ["game", "hot-reloading", "language", "mun", "scripting"]
categories = ["game-development", "mun"]

[dependencies]
mun_compiler = { version = "0.5.0-dev", path = "../mun_compiler" }
mun_runtime = { version = "0.5.0-dev", path = "../mun_runtime" }
mun_hir = { version = "0.5.0-dev", path = "../mun_hir" }
mun_paths = { version = "0.5.0-dev", path = "../mun_paths" }
mun_compiler = { version = "0.5.0", path = "../mun_compiler" }
mun_runtime = { version = "0.5.0", path = "../mun_runtime" }
mun_hir = { version = "0.5.0", path = "../mun_hir" }
mun_paths = { version = "0.5.0", path = "../mun_paths" }
anyhow = { version = "1.0", default-features = false }
itertools = { version = "0.12.0", default-features = false }
tempfile = { version = "3", default-features = false }
Loading

0 comments on commit 3f3055d

Please sign in to comment.