From 671cfdb9f6211033439262244ea63f4e970909a6 Mon Sep 17 00:00:00 2001 From: Yota Toyama Date: Tue, 3 Dec 2024 20:08:46 +0900 Subject: [PATCH 1/3] Fix ownership renaming (#622) --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index ff6f794734..606851ea96 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # Melior -[![GitHub Action](https://img.shields.io/github/actions/workflow/status/mlir-sys/melior/test.yaml?branch=main&style=flat-square)](https://github.com/mlir-sys/melior/actions?query=workflow%3Atest) +[![GitHub Action](https://img.shields.io/github/actions/workflow/status/mlir-rs/melior/test.yaml?branch=main&style=flat-square)](https://github.com/mlir-rs/melior/actions?query=workflow%3Atest) [![Crate](https://img.shields.io/crates/v/melior.svg?style=flat-square)](https://crates.io/crates/melior) -[![License](https://img.shields.io/github/license/mlir-sys/melior.svg?style=flat-square)](https://github.com/mlir-sys/melior/blob/main/LICENSE) +[![License](https://img.shields.io/github/license/mlir-rs/melior.svg?style=flat-square)](https://github.com/mlir-rs/melior/blob/main/LICENSE) Melior is the MLIR bindings for Rust. It aims to provide a simple, safe, and complete API for MLIR with a reasonably sane ownership model @@ -76,7 +76,7 @@ brew install llvm@19 ## Documentation -On [GitHub Pages](https://mlir-sys.github.io/melior/melior/). +On [GitHub Pages](https://mlir-rs.github.io/melior/melior/). ## Contribution @@ -115,9 +115,9 @@ not. ## References -- The raw C binding generation depends on [femtomc/mlir-sys](https://github.com/femtomc/mlir-sys). +- The raw C binding generation depends on [femtomc/mlir-rs](https://github.com/femtomc/mlir-rs). - The overall design is inspired by [TheDan64/inkwell](https://github.com/TheDan64/inkwell). ## License -[Apache 2.0](https://github.com/mlir-sys/melior/blob/main/LICENSE) +[Apache 2.0](https://github.com/mlir-rs/melior/blob/main/LICENSE) From f2b527a77b782891683ee9f03de3d1b451af82b2 Mon Sep 17 00:00:00 2001 From: Yota Toyama Date: Tue, 3 Dec 2024 20:18:35 +0900 Subject: [PATCH 2/3] Update readme (#623) --- README.md | 2 +- cspell.json | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 606851ea96..b75ad78a80 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,7 @@ not. ## References -- The raw C binding generation depends on [femtomc/mlir-rs](https://github.com/femtomc/mlir-rs). +- The raw C binding generation depends on [mlir-rs/mlir-sys](https://github.com/mlir-rs/mlir-sys). - The overall design is inspired by [TheDan64/inkwell](https://github.com/TheDan64/inkwell). ## License diff --git a/cspell.json b/cspell.json index c7b365a1d2..ec0f5e8e81 100644 --- a/cspell.json +++ b/cspell.json @@ -19,7 +19,6 @@ "detensorize", "dlti", "elementwise", - "femtomc", "funcs", "hasher", "indoc", From c7f6012779aaeb7c4c138d85263aa4cbc862f5af Mon Sep 17 00:00:00 2001 From: Yota Toyama Date: Tue, 3 Dec 2024 20:26:38 +0900 Subject: [PATCH 3/3] Bump version (#624) --- Cargo.lock | 4 ++-- macro/Cargo.toml | 2 +- melior/Cargo.toml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1335c5181a..4eb4264add 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -348,7 +348,7 @@ checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" [[package]] name = "melior" -version = "0.19.1" +version = "0.19.2" dependencies = [ "indoc", "insta", @@ -359,7 +359,7 @@ dependencies = [ [[package]] name = "melior-macro" -version = "0.12.1" +version = "0.12.2" dependencies = [ "comrak", "convert_case", diff --git a/macro/Cargo.toml b/macro/Cargo.toml index b48053be02..e1257d229e 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "melior-macro" description = "Internal macros for Melior" -version = "0.12.1" +version = "0.12.2" edition = "2021" license = "Apache-2.0" repository = "https://github.com/mlir-sys/melior" diff --git a/melior/Cargo.toml b/melior/Cargo.toml index 6ad4a2e90a..5a7692d791 100644 --- a/melior/Cargo.toml +++ b/melior/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "melior" description = "The rustic MLIR bindings in Rust" -version = "0.19.1" +version = "0.19.2" edition = "2021" license = "Apache-2.0" repository = "https://github.com/mlir-sys/melior" @@ -12,7 +12,7 @@ keywords = ["mlir", "llvm"] ods-dialects = [] [dependencies] -melior-macro = { version = "0.12.1", path = "../macro" } +melior-macro = { version = "0.12.2", path = "../macro" } mlir-sys = "0.3.0" [dev-dependencies]