Skip to content

Commit a677ef4

Browse files
committed
Freeze for release.
1 parent 5816a3f commit a677ef4

File tree

8 files changed

+48
-44
lines changed

8 files changed

+48
-44
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ Changelog
2222
[Github master](https://github.com/bjones1/CodeChat_Editor)
2323
--------------------------------------------------------------------------------
2424

25+
* No changes.
26+
27+
Version 0.1.42 -- 2025-Dec-04
28+
--------------------------------------------------------------------------------
29+
2530
* Drag and drop of images creates a mess; disable drop and drop for this reason.
2631
* Send sync data when doc blocks receive focus.
2732
* Improve error handling.

client/package.json5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
url: 'https://github.com/bjones1/CodeChat_editor',
4444
},
4545
type: 'module',
46-
version: '0.1.41',
46+
version: '0.1.42',
4747
dependencies: {
4848
'@codemirror/commands': '^6.10.0',
4949
'@codemirror/lang-cpp': '^6.0.3',

extensions/VSCode/Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

extensions/VSCode/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ license = "GPL-3.0-only"
3232
name = "codechat-editor-vscode-extension"
3333
readme = "../README.md"
3434
repository = "https://github.com/bjones1/CodeChat_Editor"
35-
version = "0.1.41"
35+
version = "0.1.42"
3636

3737
[lib]
3838
crate-type = ["cdylib"]

extensions/VSCode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"type": "git",
4141
"url": "https://github.com/bjones1/CodeChat_Editor"
4242
},
43-
"version": "0.1.41",
43+
"version": "0.1.42",
4444
"activationEvents": [
4545
"onCommand:extension.codeChatEditorActivate",
4646
"onCommand:extension.codeChatEditorDeactivate"

extensions/VSCode/pnpm-lock.yaml

Lines changed: 25 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

server/Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

server/Cargo.toml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
# [http://www.gnu.org/licenses/](http://www.gnu.org/licenses/).
1818
#
1919
# `Cargo.toml` -- Rust build/package management config for the server
20-
# ===================================================================
20+
# ==============================================================================
2121
#
2222
# General package configurations
23-
# ------------------------------
23+
# ------------------------------------------------------------------------------
2424
[package]
2525
authors = ["Bryan A. Jones", "Peter Loux"]
2626
categories = ["development-tools", "text-editors"]
@@ -32,14 +32,14 @@ license = "GPL-3.0-only"
3232
name = "codechat-editor-server"
3333
readme = "../README.md"
3434
repository = "https://github.com/bjones1/CodeChat_Editor"
35-
version = "0.1.41"
35+
version = "0.1.42"
3636

3737
# This library allows other packages to use core CodeChat Editor features.
3838
[lib]
3939
name = "code_chat_editor"
4040

4141
# Features
42-
# --------
42+
# ------------------------------------------------------------------------------
4343
#
4444
# See the [docs](https://doc.rust-lang.org/cargo/reference/features.html).
4545
[features]
@@ -51,7 +51,7 @@ lexer_explain = []
5151
int_tests = ["assert_fs", "assertables", "futures"]
5252

5353
# Dependencies
54-
# ------------
54+
# ------------------------------------------------------------------------------
5555
[dependencies]
5656
actix-files = "0.6"
5757
actix-http = "3.9.0"
@@ -104,8 +104,7 @@ url = "2.5.2"
104104
urlencoding = "2"
105105
webbrowser = "1.0.5"
106106

107-
# [Windows-only
108-
# dependencies](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#platform-specific-dependencies).
107+
# [Windows-only dependencies](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#platform-specific-dependencies).
109108
[target.'cfg(windows)'.dependencies]
110109
win_partitions = "0.3.0"
111110

@@ -127,7 +126,7 @@ tokio-tungstenite = "0.28"
127126
#actix-rt = { path = "../../actix-net/actix-rt" }
128127

129128
# Release
130-
# -------
129+
# ------------------------------------------------------------------------------
131130
#
132131
# Specify release-only features for pulldown. See the
133132
# [docs](https://docs.rs/crate/pulldown-cmark/latest).
@@ -138,7 +137,7 @@ panic = "abort"
138137
strip = "symbols"
139138

140139
# Distribution
141-
# ------------
140+
# ------------------------------------------------------------------------------
142141
#
143142
# This uses [cargo dist](https://opensource.axo.dev/cargo-dist) to build
144143
# binaries across multiple platforms using github's CI/CD.

0 commit comments

Comments
 (0)