Skip to content

Commit

Permalink
release v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
noib3 committed Dec 10, 2023
1 parent 6e4c5a8 commit 6b4ead5
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@

## [Unreleased]

## [0.4.0] - Dec 11 2023

[Unreleased]: https://github.com/noib3/nvim-oxi/compare/v0.3.0...HEAD
[Unreleased]: https://github.com/noib3/nvim-oxi/compare/v0.4.0...HEAD
[0.4.0]: https://github.com/noib3/nvim-oxi/tree/v0.4.0
11 changes: 6 additions & 5 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.3.0"
version = "0.4.0"
edition = "2021"
authors = ["Riccardo Mazzarini <me@noib3.dev>"]
rust-version = "1.62"
Expand All @@ -20,7 +20,8 @@ license = "MIT"
keywords = ["bindings", "neovim", "nvim"]

[workspace.dependencies]
oxi-api = { version = "0.3.0", path = "./crates/oxi-api" }
oxi-luajit = { version = "0.3.0", path = "./crates/oxi-luajit" }
oxi-macros = { version = "0.3.0", path = "./crates/oxi-macros", features = ["module"] }
oxi-types = { version = "0.3.0", path = "./crates/oxi-types", features = ["serde"] }
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"] }
2 changes: 1 addition & 1 deletion crates/nvim-oxi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ test = ["oxi-macros/test", "miniserde"]

[dependencies]
oxi-api = { workspace = true }
oxi-libuv = { version = "0.3.0", path = "../oxi-libuv", optional = true }
oxi-libuv = { workspace = true, optional = true }
oxi-luajit = { workspace = true }
oxi-macros = { workspace = true }
oxi-types = { workspace = true }
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.3.0")]
#![doc(html_root_url = "https://docs.rs/nvim_oxi/0.4.0")]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![deny(future_incompatible)]
#![deny(nonstandard_style)]
Expand Down

0 comments on commit 6b4ead5

Please sign in to comment.