diff --git a/Cargo.lock b/Cargo.lock index 3fe7d8b..07ca3de 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -231,7 +231,7 @@ dependencies = [ [[package]] name = "codemp" -version = "0.7.0-beta.4" +version = "0.7.0" dependencies = [ "async-trait", "codemp-proto", diff --git a/Cargo.toml b/Cargo.toml index fa4c002..2698072 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ authors = [ ] license = "GPL-3.0-only" edition = "2021" -version = "0.7.0-beta.4" +version = "0.7.0" exclude = ["dist/*"] [lib] diff --git a/dist/java/build.gradle b/dist/java/build.gradle index c0a3b87..58b7b02 100644 --- a/dist/java/build.gradle +++ b/dist/java/build.gradle @@ -5,7 +5,7 @@ plugins { } group = 'mp.code' -version = '0.0.3' +version = '0.7.0' java { sourceCompatibility = targetCompatibility = JavaVersion.VERSION_11 diff --git a/dist/js/package.json b/dist/js/package.json index df3adae..95da5e0 100644 --- a/dist/js/package.json +++ b/dist/js/package.json @@ -1,6 +1,6 @@ { "name": "@codemp/native", - "version": "0.0.10", + "version": "0.7.0", "description": "code multiplexer -- javascript bindings", "keywords": [ "codemp", @@ -35,8 +35,8 @@ } }, "optionalDependencies": { - "@codemp/native-win32-x64-msvc": "0.0.10", - "@codemp/native-darwin-arm64": "0.0.10", - "@codemp/native-linux-x64-gnu": "0.0.10" + "@codemp/native-win32-x64-msvc": "0.7.0", + "@codemp/native-darwin-arm64": "0.7.0", + "@codemp/native-linux-x64-gnu": "0.7.0" } } diff --git a/dist/lua/codemp-0.0.7-1.rockspec b/dist/lua/codemp-0.7.0-1.rockspec similarity index 97% rename from dist/lua/codemp-0.0.7-1.rockspec rename to dist/lua/codemp-0.7.0-1.rockspec index 8431da6..714fb2b 100644 --- a/dist/lua/codemp-0.0.7-1.rockspec +++ b/dist/lua/codemp-0.7.0-1.rockspec @@ -1,5 +1,5 @@ package = "codemp" -version = "0.0.7-1" +version = "0.7.0-1" source = { url = "git+https://github.com/hexedtech/codemp", diff --git a/dist/py/pyproject.toml b/dist/py/pyproject.toml index 5fb4a75..2cefd5c 100644 --- a/dist/py/pyproject.toml +++ b/dist/py/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "codemp" -version = "0.0.9" +version = "0.7.0" description = "code multiplexer" requires-python = ">= 3.8" license = "GPL-3.0-only" diff --git a/src/cursor/controller.rs b/src/cursor/controller.rs index 7bb1789..014b1cf 100644 --- a/src/cursor/controller.rs +++ b/src/cursor/controller.rs @@ -1,5 +1,5 @@ //! ### Cursor Controller -//! A [Controller] implementation for [Cursor] actions in a [crate::Workspace] +//! A [Controller] implementation for [crate::api::Cursor] actions in a [crate::Workspace] use std::sync::Arc; diff --git a/src/workspace.rs b/src/workspace.rs index 2fe35e6..b474121 100644 --- a/src/workspace.rs +++ b/src/workspace.rs @@ -149,7 +149,7 @@ impl Workspace { /// Detach from an active buffer. /// - /// This option will be carried in background. [`buffer::worker::BufferWorker`] will be stopped and dropped. + /// This option will be carried in background. `BufferWorker` will be stopped and dropped. /// There may still be some events enqueued in buffers to poll, but the [buffer::Controller] itself won't be /// accessible anymore from [`Workspace`]. pub fn detach(&self, path: &str) -> DetachResult {