chore: bump versions, fix docs

This commit is contained in:
əlemi 2024-09-18 16:11:12 +02:00
parent 2cdc77eaec
commit 5a8b4ae800
Signed by: alemi
GPG key ID: A4895B84D311642C
8 changed files with 11 additions and 11 deletions

2
Cargo.lock generated
View file

@ -231,7 +231,7 @@ dependencies = [
[[package]] [[package]]
name = "codemp" name = "codemp"
version = "0.7.0-beta.4" version = "0.7.0"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"codemp-proto", "codemp-proto",

View file

@ -11,7 +11,7 @@ authors = [
] ]
license = "GPL-3.0-only" license = "GPL-3.0-only"
edition = "2021" edition = "2021"
version = "0.7.0-beta.4" version = "0.7.0"
exclude = ["dist/*"] exclude = ["dist/*"]
[lib] [lib]

View file

@ -5,7 +5,7 @@ plugins {
} }
group = 'mp.code' group = 'mp.code'
version = '0.0.3' version = '0.7.0'
java { java {
sourceCompatibility = targetCompatibility = JavaVersion.VERSION_11 sourceCompatibility = targetCompatibility = JavaVersion.VERSION_11

View file

@ -1,6 +1,6 @@
{ {
"name": "@codemp/native", "name": "@codemp/native",
"version": "0.0.10", "version": "0.7.0",
"description": "code multiplexer -- javascript bindings", "description": "code multiplexer -- javascript bindings",
"keywords": [ "keywords": [
"codemp", "codemp",
@ -35,8 +35,8 @@
} }
}, },
"optionalDependencies": { "optionalDependencies": {
"@codemp/native-win32-x64-msvc": "0.0.10", "@codemp/native-win32-x64-msvc": "0.7.0",
"@codemp/native-darwin-arm64": "0.0.10", "@codemp/native-darwin-arm64": "0.7.0",
"@codemp/native-linux-x64-gnu": "0.0.10" "@codemp/native-linux-x64-gnu": "0.7.0"
} }
} }

View file

@ -1,5 +1,5 @@
package = "codemp" package = "codemp"
version = "0.0.7-1" version = "0.7.0-1"
source = { source = {
url = "git+https://github.com/hexedtech/codemp", url = "git+https://github.com/hexedtech/codemp",

View file

@ -1,6 +1,6 @@
[project] [project]
name = "codemp" name = "codemp"
version = "0.0.9" version = "0.7.0"
description = "code multiplexer" description = "code multiplexer"
requires-python = ">= 3.8" requires-python = ">= 3.8"
license = "GPL-3.0-only" license = "GPL-3.0-only"

View file

@ -1,5 +1,5 @@
//! ### Cursor Controller //! ### 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; use std::sync::Arc;

View file

@ -149,7 +149,7 @@ impl Workspace {
/// Detach from an active buffer. /// 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 /// There may still be some events enqueued in buffers to poll, but the [buffer::Controller] itself won't be
/// accessible anymore from [`Workspace`]. /// accessible anymore from [`Workspace`].
pub fn detach(&self, path: &str) -> DetachResult { pub fn detach(&self, path: &str) -> DetachResult {