Skip to content

Commit

Permalink
v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyagr committed Sep 29, 2024
1 parent 87a61ff commit 5bf5c6d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### New features

### Fixed bugs

## [v0.5.0] - 2025-09-29

### New features

* `diffedit3` now accepts files as arguments, not just dirs. So, `diffedit3
left_file right_file output_file` is now allowed. Mixing dirs and files is not
allowed.
Expand All @@ -19,8 +25,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
and the pinning/collapsing controls are disabled. Allowing the user to
collapse the only editor doesn't make much sense.

### Fixed bugs

## [v0.4.0] - 2024-05-04

### Breaking changes
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ include = ["/src", "/webapp/dist", "/*.md"]
pkg-url = "{ repo }/releases/download/v{ version }/diffedit3-v{ version }-{ target }.{ archive-format }"

[workspace.package]
version = "0.4.0" # Also update package.json and tauri.conf.json
version = "0.5.0" # Also update package.json and tauri.conf.json
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion backend-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"package": {
"productName": "diffedit3-gui",
"version": "0.4.0"
"version": "0.5.0"
},
"tauri": {
"allowlist": {
Expand Down
2 changes: 1 addition & 1 deletion webapp/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "diffedit3-webapp",
"private": true,
"version": "0.4.0",
"version": "0.5.0",
"type": "module",
"dependencies": {
"@tauri-apps/api": "^1.5.3",
Expand Down

0 comments on commit 5bf5c6d

Please sign in to comment.