Skip to content

Commit 3257b3d

Browse files
authored
Merge branch 'main' into feature/operation-like
2 parents b7ba002 + cc58904 commit 3257b3d

File tree

4 files changed

+29
-29
lines changed

4 files changed

+29
-29
lines changed

Cargo.lock

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

macro/Cargo.toml

Lines changed: 5 additions & 5 deletions
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.14.0"
4+
version = "0.15.0"
55
edition = "2021"
66
license = "Apache-2.0"
77
repository = "https://github.com/mlir-rs/melior"
@@ -13,18 +13,18 @@ keywords = ["mlir", "llvm"]
1313
proc-macro = true
1414

1515
[dependencies]
16-
comrak = { version = "0.35.0", default-features = false }
17-
convert_case = "0.7.1"
16+
comrak = { version = "0.37.0", default-features = false }
17+
convert_case = "0.8.0"
1818
proc-macro2 = "1"
1919
quote = "1"
2020
regex = "1.11.1"
2121
syn = { version = "2", features = ["full"] }
2222
tblgen = { version = "0.5.2", features = [
2323
"llvm19-0",
2424
], default-features = false }
25-
unindent = "0.2.3"
25+
unindent = "0.2.4"
2626

2727
[dev-dependencies]
2828
melior = { path = "../melior", features = ["ods-dialects"] }
29-
mlir-sys = "0.4.1"
29+
mlir-sys = "0.4.2"
3030
pretty_assertions = "1.4.1"

melior/Cargo.toml

Lines changed: 4 additions & 4 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.21.0"
4+
version = "0.22.0"
55
edition = "2021"
66
license = "Apache-2.0"
77
repository = "https://github.com/mlir-rs/melior"
@@ -14,10 +14,10 @@ ods-dialects = []
1414
helpers = ["ods-dialects"]
1515

1616
[dependencies]
17-
melior-macro = { version = "0.14.0", path = "../macro" }
18-
mlir-sys = "0.4.1"
17+
melior-macro = { version = "0.15.0", path = "../macro" }
18+
mlir-sys = "0.4.2"
1919

2020
[dev-dependencies]
21-
indoc = "2.0.5"
21+
indoc = "2.0.6"
2222
insta = "1.41.1"
2323
pretty_assertions = "1.4.1"

melior/src/dialect/arith.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,10 +125,10 @@ melior_macro::binary_operations!(
125125
divsi,
126126
divui,
127127
floordivsi,
128-
maxf,
128+
maxnumf,
129129
maxsi,
130130
maxui,
131-
minf,
131+
minimumf,
132132
minsi,
133133
minui,
134134
mulf,

0 commit comments

Comments
 (0)