From 3352f107e4f3af9bfd4112cf503061063b61342d Mon Sep 17 00:00:00 2001 From: Riccardo Mazzarini Date: Sat, 16 Dec 2023 11:15:39 +0100 Subject: [PATCH] releave `v0.4.1` --- CHANGELOG.md | 5 ++++- Cargo.toml | 14 ++++++++------ crates/nvim-oxi/Cargo.toml | 4 ++-- crates/nvim-oxi/src/lib.rs | 2 +- crates/oxi-api/Cargo.toml | 2 +- crates/oxi-libuv/Cargo.toml | 7 +++---- crates/oxi-luajit/Cargo.toml | 4 ++-- crates/oxi-types/Cargo.toml | 2 +- 8 files changed, 22 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 231df782..e66e8478 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## [0.4.1] - Dec 16 2023 + ### Added - a new `ExtmarkVirtTextChunk` struct; @@ -16,5 +18,6 @@ ## [0.4.0] - Dec 11 2023 -[Unreleased]: https://github.com/noib3/nvim-oxi/compare/v0.4.0...HEAD +[Unreleased]: https://github.com/noib3/nvim-oxi/compare/v0.4.1...HEAD +[0.4.1]: https://github.com/noib3/nvim-oxi/tree/v0.4.1 [0.4.0]: https://github.com/noib3/nvim-oxi/tree/v0.4.0 diff --git a/Cargo.toml b/Cargo.toml index 1ea88426..83d60ce5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ members = [ exclude = ["tests"] [workspace.package] -version = "0.4.0" +version = "0.4.1" edition = "2021" authors = ["Riccardo Mazzarini "] rust-version = "1.62" @@ -20,8 +20,10 @@ license = "MIT" keywords = ["bindings", "neovim", "nvim"] [workspace.dependencies] -oxi-api = { version = "0.4.0", path = "./crates/oxi-api" } -oxi-libuv = { version = "0.4.0", path = "./crates/oxi-libuv" } -oxi-luajit = { version = "0.4.0", path = "./crates/oxi-luajit" } -oxi-macros = { version = "0.4.0", path = "./crates/oxi-macros", features = ["module"] } -oxi-types = { version = "0.4.0", path = "./crates/oxi-types", features = ["serde"] } +once_cell = "1.19" +oxi-api = { version = "0.4.1", path = "./crates/oxi-api" } +oxi-libuv = { version = "0.4.1", path = "./crates/oxi-libuv" } +oxi-luajit = { version = "0.4.1", path = "./crates/oxi-luajit" } +oxi-macros = { version = "0.4.1", path = "./crates/oxi-macros", features = ["module"] } +oxi-types = { version = "0.4.1", path = "./crates/oxi-types", features = ["serde"] } +thiserror = "1.0" diff --git a/crates/nvim-oxi/Cargo.toml b/crates/nvim-oxi/Cargo.toml index c491f5b4..c21577ed 100644 --- a/crates/nvim-oxi/Cargo.toml +++ b/crates/nvim-oxi/Cargo.toml @@ -10,7 +10,7 @@ keywords.workspace = true readme.workspace = true [package.metadata.docs.rs] -features = ["neovim-0-9", "libuv", "mlua", "test"] +features = ["neovim-nightly", "libuv", "mlua", "dep:mlua/vendored", "test"] rustdoc-args = ["--cfg", "docsrs"] [features] @@ -31,7 +31,7 @@ oxi-types = { workspace = true } miniserde = { version = "0.1", optional = true } mlua = { version = "0.9", features = ["luajit"], optional = true } -thiserror = "1.0" +thiserror = { workspace = true } [dev-dependencies] mlua = { version = "0.9", features = ["luajit", "module"] } diff --git a/crates/nvim-oxi/src/lib.rs b/crates/nvim-oxi/src/lib.rs index 98079b2d..2769043b 100644 --- a/crates/nvim-oxi/src/lib.rs +++ b/crates/nvim-oxi/src/lib.rs @@ -5,7 +5,7 @@ //! //! [Neovim]: https://neovim.io -#![doc(html_root_url = "https://docs.rs/nvim_oxi/0.4.0")] +#![doc(html_root_url = "https://docs.rs/nvim_oxi/0.4.1")] #![cfg_attr(docsrs, feature(doc_cfg))] #![deny(future_incompatible)] #![deny(nonstandard_style)] diff --git a/crates/oxi-api/Cargo.toml b/crates/oxi-api/Cargo.toml index 1263dfe4..dd378186 100644 --- a/crates/oxi-api/Cargo.toml +++ b/crates/oxi-api/Cargo.toml @@ -19,4 +19,4 @@ oxi-types = { workspace = true } serde = { version = "1.0", features = ["derive"] } serde_repr = "0.1" -thiserror = "1.0" +thiserror = { workspace = true } diff --git a/crates/oxi-libuv/Cargo.toml b/crates/oxi-libuv/Cargo.toml index 6ff9e99b..feb3e759 100644 --- a/crates/oxi-libuv/Cargo.toml +++ b/crates/oxi-libuv/Cargo.toml @@ -12,9 +12,8 @@ use-1-44 = ["libuv-sys2-1-44"] use-1-46 = ["libuv-sys2-1-46"] [dependencies] -oxi-luajit = { workspace = true } - libuv-sys2-1-44 = { package = "libuv-sys2", version = "1.44.2", optional = true } libuv-sys2-1-46 = { package = "libuv-sys2", version = "1.46.0", optional = true } -once_cell = "1.17" -thiserror = "1.0" +once_cell = { workspace = true } +oxi-luajit = { workspace = true } +thiserror = { workspace = true } diff --git a/crates/oxi-luajit/Cargo.toml b/crates/oxi-luajit/Cargo.toml index a7e7b3ad..b40bdf04 100644 --- a/crates/oxi-luajit/Cargo.toml +++ b/crates/oxi-luajit/Cargo.toml @@ -8,5 +8,5 @@ documentation.workspace = true license.workspace = true [dependencies] -once_cell = "1.15" -thiserror = "1.0" +once_cell = { workspace = true } +thiserror = { workspace = true } diff --git a/crates/oxi-types/Cargo.toml b/crates/oxi-types/Cargo.toml index 807e7c82..60c19309 100644 --- a/crates/oxi-types/Cargo.toml +++ b/crates/oxi-types/Cargo.toml @@ -15,4 +15,4 @@ oxi-luajit = { workspace = true } libc = "0.2" serde = { version = "1.0", optional = true } -thiserror = "1.0" +thiserror = { workspace = true }