Skip to content

Commit

Permalink
releave v0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
noib3 committed Dec 16, 2023
1 parent 9e4689a commit 3352f10
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 18 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## [0.4.1] - Dec 16 2023

### Added

- a new `ExtmarkVirtTextChunk` struct;
Expand All @@ -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
14 changes: 8 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ members = [
exclude = ["tests"]

[workspace.package]
version = "0.4.0"
version = "0.4.1"
edition = "2021"
authors = ["Riccardo Mazzarini <[email protected]>"]
rust-version = "1.62"
Expand All @@ -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"
4 changes: 2 additions & 2 deletions crates/nvim-oxi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/nvim-oxi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down
2 changes: 1 addition & 1 deletion crates/oxi-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ oxi-types = { workspace = true }

serde = { version = "1.0", features = ["derive"] }
serde_repr = "0.1"
thiserror = "1.0"
thiserror = { workspace = true }
7 changes: 3 additions & 4 deletions crates/oxi-libuv/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
4 changes: 2 additions & 2 deletions crates/oxi-luajit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
2 changes: 1 addition & 1 deletion crates/oxi-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ oxi-luajit = { workspace = true }

libc = "0.2"
serde = { version = "1.0", optional = true }
thiserror = "1.0"
thiserror = { workspace = true }

0 comments on commit 3352f10

Please sign in to comment.