Skip to content

Commit

Permalink
chore: bump for release
Browse files Browse the repository at this point in the history
also update releasing guide
  • Loading branch information
alemidev authored and zaaarf committed Nov 17, 2024
1 parent 86fd70c commit 1d82918
Show file tree
Hide file tree
Showing 8 changed files with 93 additions and 94 deletions.
161 changes: 80 additions & 81 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ authors = [
]
license = "GPL-3.0-only"
edition = "2021"
version = "0.8.2"
version = "0.8.3"
exclude = ["dist/*"]

[lib]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.2)](https://github.com/hexedtech/codemp/releases/tag/v0.8.2)
[![GitHub commits since tagged version](https://img.shields.io/github/commits-since/hexedtech/codemp/v0.8.3)](https://github.com/hexedtech/codemp/releases/tag/v0.8.3)

> `codemp` is a **collaborative** text editing solution to work remotely.
Expand Down
6 changes: 3 additions & 3 deletions dist/RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ Before merging on `stable`, make sure all these steps have been followed
> do any required change in a branch named `release/vX.Y.Z`, for which a PR can then be opened
- [ ] `Cargo.toml`: bump version
- [ ] `dist/js/publish/package.json`: make sure version matches with Cargo.toml (also check optionalDependencies! all versions must be the same)
- [ ] `dist/js/package.json`: make sure version matches with Cargo.toml (also check optionalDependencies! all versions must be the same)
- [ ] `dist/py/pyproject.toml`: make sure version matches with Cargo.toml
- [ ] `dist/java/build.gradle`: make sure version matches with Cargo.toml
- [ ] `dist/lua/codemp-X.Y.Z-1.rockspec`: make sure version matches with Cargo.toml (note that rockspec file contains current version in its name so must be renamed) (note that rockspec versions have a fourth component: "revision". we don't use it so always set is as `1`)
- [ ] update `Cargo.lock` (basically delete it and re-run `cargo build`. check diff before committing!)
- [ ] **make sure docs build without warning or errors** (`cargo doc`)
- [ ] **make sure that core crate builds** with `--release --features=js,py,java,luajit`
- [ ] **make sure docs build without warning or errors** (`cargo doc --features=serialize`)
- [ ] **make sure that core crate builds** with `--release --features=js,py,java,lua`
- [ ] **make sure the version you're about to release is available** (on all registries!)
- [ ] update last tag in "commits since last tag" badge (in README.md)
- [ ] commit all these changes (in `release/vX.Y.Z` branch), open a PR and have it approved and merged
Expand Down
2 changes: 1 addition & 1 deletion dist/java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = 'mp.code'
version = '0.8.2'
version = '0.8.3'

tasks.register('windowsJar', Jar) {
outputs.upToDateWhen { false }
Expand Down
8 changes: 4 additions & 4 deletions dist/js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@codemp/native",
"version": "0.8.2",
"version": "0.8.3",
"description": "code multiplexer -- javascript bindings",
"keywords": [
"codemp",
Expand Down Expand Up @@ -35,8 +35,8 @@
}
},
"optionalDependencies": {
"@codemp/native-win32-x64-msvc": "0.8.2",
"@codemp/native-darwin-arm64": "0.8.2",
"@codemp/native-linux-x64-gnu": "0.8.2"
"@codemp/native-win32-x64-msvc": "0.8.3",
"@codemp/native-darwin-arm64": "0.8.3",
"@codemp/native-linux-x64-gnu": "0.8.3"
}
}
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package = "codemp"
version = "0.8.2-1"
version = "0.8.3-1"

source = {
url = "git+https://github.com/hexedtech/codemp",
tag = "v0.8.2",
tag = "v0.8.3",
}

dependencies = {
Expand Down
2 changes: 1 addition & 1 deletion dist/py/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "codemp"
version = "0.8.2"
version = "0.8.3"
description = "code multiplexer"
requires-python = ">=3.8"
license = "GPL-3.0-only"
Expand Down

0 comments on commit 1d82918

Please sign in to comment.