Skip to content

Commit

Permalink
Release bo v0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
brouberol committed Apr 24, 2022
1 parent 7fa6511 commit 458a345
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
16 changes: 14 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,18 @@ All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](https://semver.org).

## [0.3.1]
## Unreleased

## [0.3.2] - 2022/04/24

### Improvements
- When moving from a line to a shorter one, we now make sure the cursor don't overflow it by moving it to the last character when necessary.
- Display backtrackes on failing tests.

### Fixes
- The hash of the last saved document is always updated when the save is successful, saving us from having to run `:q!` on a freshly saved doc.

## [0.3.1] - 2021/09/05

### Features
- Trailing spaces are now removed on save. Thanks @ilmanzo !
Expand Down Expand Up @@ -61,7 +72,8 @@ This project adheres to [Semantic Versioning](https://semver.org).
- Many offset/insertion related bugs were fixed


[Unreleased]: https://github.com/brouberol/bo/compare/v0.3.1...HEAD
[Unreleased]: https://github.com/brouberol/bo/compare/v0.3.2...HEAD
[0.3.2]: https://github.com/brouberol/bo/compare/v0.3.1...0.3.2
[0.3.1]: https://github.com/brouberol/bo/compare/v0.3.0...0.3.1
[0.3.0]: https://github.com/brouberol/bo/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/brouberol/bo/compare/v0.1.0...v0.2.0
2 changes: 1 addition & 1 deletion Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bo"
version = "0.3.1"
version = "0.3.2"
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -10,4 +10,4 @@ termion = "1"
unicode-segmentation = "1"
structopt = "~0.3.22"
serde = { version = "1.0", features = ["derive"] }
serde_json = "~1.0.59"
serde_json = "~1.0.59"

0 comments on commit 458a345

Please sign in to comment.