Merge pull request from hexedtech/release/v0.8.5

release: v0.8.5
This commit is contained in:
əlemi 2025-02-15 16:14:08 +01:00 committed by GitHub
commit e1d12a17aa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 279 additions and 264 deletions

525
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -11,7 +11,7 @@ authors = [
]
license = "GPL-3.0-only"
edition = "2021"
version = "0.8.4"
version = "0.8.5"
exclude = ["dist/*"]
[lib]

View file

@ -5,7 +5,7 @@
[![Crates.io Version](https://img.shields.io/crates/v/codemp)](https://crates.io/crates/codemp)
[![Gitter Chat](https://img.shields.io/gitter/room/hexedtech/codemp)](https://gitter.im/hexedtech/codemp)
[![GitHub last commit](https://img.shields.io/github/last-commit/hexedtech/codemp)](https://github.com/hexedtech/codemp/commits/dev/)
[![GitHub commits since tagged version](https://img.shields.io/github/commits-since/hexedtech/codemp/v0.8.4)](https://github.com/hexedtech/codemp/releases/tag/v0.8.4)
[![GitHub commits since tagged version](https://img.shields.io/github/commits-since/hexedtech/codemp/v0.8.5)](https://github.com/hexedtech/codemp/releases/tag/v0.8.5)
> `codemp` is a **collaborative** text editing solution to work remotely.

View file

@ -5,7 +5,7 @@ plugins {
}
group = 'mp.code'
version = '0.8.4'
version = '0.8.5'
tasks.register('windowsJar', Jar) {
outputs.upToDateWhen { false }

View file

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

View file

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

View file

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