Skip to content

Commit dfdaad5

Browse files
authored
Merge branch 'main' into fix_ods
2 parents f796a31 + e8b1446 commit dfdaad5

File tree

4 files changed

+20
-5
lines changed

4 files changed

+20
-5
lines changed

Cargo.lock

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

macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "melior-macro"
33
description = "Internal macros for Melior"
4-
version = "0.13.0"
4+
version = "0.13.1"
55
edition = "2021"
66
license = "Apache-2.0"
77
repository = "https://github.com/mlir-sys/melior"

melior/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "melior"
33
description = "The rustic MLIR bindings in Rust"
4-
version = "0.20.0"
4+
version = "0.20.1"
55
edition = "2021"
66
license = "Apache-2.0"
77
repository = "https://github.com/mlir-sys/melior"
@@ -14,7 +14,7 @@ ods-dialects = []
1414
helpers = ["ods-dialects"]
1515

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

2020
[dev-dependencies]

tools/version.sh

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/bin/sh
2+
3+
set -e
4+
5+
level=${1:-patch}
6+
7+
if [ $# -gt 0 ]; then
8+
shift 1
9+
fi
10+
11+
options="$@"
12+
13+
cd $(dirname $0)/..
14+
15+
cargo release version $level --execute --no-confirm --allow-branch '*' $options

0 commit comments

Comments
 (0)