Skip to content

Commit

Permalink
release: release version 0.17.1
Browse files Browse the repository at this point in the history
This release includes a fix for a performance regression in `jj
status`.
  • Loading branch information
martinvonz committed May 7, 2024
1 parent 0a5c98d commit 786f840
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 8 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed bugs

## [0.17.1] - 2024-05-01

### Breaking changes

### Deprecations

### New features

### Fixed bugs

* `jj status` no longer scans through the entire history to look for ancestors with conflicts.

## [0.17.0] - 2024-05-01
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ resolver = "2"
members = ["cli", "lib", "lib/gen-protos", "lib/proc-macros", "lib/testutils"]

[workspace.package]
version = "0.17.0"
version = "0.17.1"
license = "Apache-2.0"
rust-version = "1.76" # NOTE: remember to update CI, contributing.md, changelog.md, and flake.nix
edition = "2021"
Expand Down Expand Up @@ -116,8 +116,8 @@ zstd = "0.12.4"
# put all inter-workspace libraries, i.e. those that use 'path = ...' here in
# their own (alphabetically sorted) block

jj-lib = { path = "lib", version = "0.17.0" }
jj-lib-proc-macros = { path = "lib/proc-macros", version = "0.17.0" }
jj-lib = { path = "lib", version = "0.17.1" }
jj-lib-proc-macros = { path = "lib/proc-macros", version = "0.17.1" }
testutils = { path = "lib/testutils" }

# Insta suggests compiling these packages in opt mode for faster testing.
Expand Down

0 comments on commit 786f840

Please sign in to comment.