Skip to content

Commit 1f4348f

Browse files
committed
changelog and version number
1 parent 9985f51 commit 1f4348f

7 files changed

Lines changed: 25 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
11
# GG Changelog
2+
3+
## [0.29.1](releases/tag/v0.29.1)
4+
5+
### Added
6+
- "New inserted parent" menu item (thanks to @brk).
7+
- Move sub-file hunks from the right pane (thanks to @nightscape).
8+
- Show recent workspaces if opening a workspace failed (thanks to @Natural-selection1).
9+
- Change and commit ID can be selected for copying.
10+
11+
### Fixed
12+
- Fix overscroll on MacOS (thanks to @mernen).
13+
- Compress path and action info when window is too narrow (thanks to @Natural-selection1).
14+
- Use from_utf8_lossy to prevent invalid utf-8 sequence errors (thanks to @jmole).
15+
- Enabled LTO for release builds, smaller and faster binary (thanks to @berkus).
16+
217
## [0.29.0](releases/tag/v0.29.0)
318
This version is based on Jujutsu 0.29.
419

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "gg",
33
"private": true,
4-
"version": "0.29.0",
4+
"version": "0.29.1",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gg"
3-
version = "0.29.0"
3+
version = "0.29.1"
44
description = "GG - Gui for JJ"
55
authors = ["Thomas Castiglione"]
66
edition = "2024"

src-tauri/Tauri.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
productName = "gg"
2-
version = "0.29.0"
2+
version = "0.29.1"
33
identifier = "au.gulbanana.gg"
44

55
[build]

src-tauri/src/worker/mutations.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ use jj_lib::{
2828
use pollster::block_on;
2929

3030
use crate::messages::{
31-
AbandonRevisions, BackoutRevisions, CheckoutRevision, CopyChanges, CreateRef, CreateRevision,
32-
CreateRevisionBetween, DeleteRef, DescribeRevision, DuplicateRevisions, GitFetch, GitPush,
33-
InsertRevision, MoveChanges, MoveHunk, MoveRef, MoveRevision, MoveSource, MutationResult,
34-
RenameBranch, StoreRef, TrackBranch, TreePath, UndoOperation, UntrackBranch,
31+
AbandonRevisions, BackoutRevisions, CheckoutRevision, CopyChanges, CopyHunk, CreateRef,
32+
CreateRevision, CreateRevisionBetween, DeleteRef, DescribeRevision, DuplicateRevisions,
33+
GitFetch, GitPush, InsertRevision, MoveChanges, MoveHunk, MoveRef, MoveRevision, MoveSource,
34+
MutationResult, RenameBranch, StoreRef, TrackBranch, TreePath, UndoOperation, UntrackBranch,
3535
};
3636

3737
use super::Mutation;

0 commit comments

Comments
 (0)