Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
raviqqe committed Dec 14, 2024
1 parent e019f4c commit fc3370f
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "melior-macro"
description = "Internal macros for Melior"
version = "0.13.0"
version = "0.13.1"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/mlir-sys/melior"
Expand Down
4 changes: 2 additions & 2 deletions melior/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "melior"
description = "The rustic MLIR bindings in Rust"
version = "0.20.0"
version = "0.20.1"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/mlir-sys/melior"
Expand All @@ -14,7 +14,7 @@ ods-dialects = []
helpers = ["ods-dialects"]

[dependencies]
melior-macro = { version = "0.13.0", path = "../macro" }
melior-macro = { version = "0.13.1", path = "../macro" }
mlir-sys = "0.4.1"

[dev-dependencies]
Expand Down
15 changes: 15 additions & 0 deletions tools/version.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/sh

set -e

level=${1:-patch}

if [ $# -gt 0 ]; then
shift 1
fi

options="$@"

cd $(dirname $0)/..

cargo release version $level --execute --no-confirm --allow-branch '*' $options

0 comments on commit fc3370f

Please sign in to comment.