Skip to content

Commit

Permalink
Add 0.2.0 release notes (#28)
Browse files Browse the repository at this point in the history
* Add 0.2.0 release notes
* Update the CLI tool version
* Update ocamlformat version
  • Loading branch information
chshersh authored Dec 17, 2023
1 parent 8aa3242 commit 7807b0e
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .ocamlformat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 0.25.1
version = 0.26.1
profile = default
break-cases = fit-or-vertical
break-infix = wrap-or-vertical
29 changes: 27 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,29 @@ available [on GitHub][2].

<!-- Add new changes here -->

`done` command has been added by [@sloboegen].
## [0.2.0] — 2023-12-17 🎄

### Added

- [#9](https://github.com/chshersh/zbg/issues/9):
New command `zbg done` (see [README.md](./README.md) for more details)
(by [@sloboegen])
- [#13](https://github.com/chshersh/zbg/issues/13):
Support both `-f` and `--force` flags in CLI
(by [@tekknoid])

### Fixed

- [#18](https://github.com/chshersh/zbg/issues/18):
`zbg status` now prints the diff when invoked not from the project root
(by [@tekknoid])
- [#7](https://github.com/chshersh/zbg/issues/7), [#11](https://github.com/chshersh/zbg/issues/11):
Escape messages in `zbg stash` and `zbg commit` commands
(by [@paulpatault])
- [#25](https://github.com/chshersh/zbg/issues/25):
Use the default branch always instead of hardcoding `main`
(by [@tekknoid])


## [0.1.0] — 2023-04-10 🌇

Expand All @@ -19,7 +41,9 @@ Initial release prepared by [@chshersh].
<!-- Contributors -->

[@chshersh]: https://github.com/chshersh
[@paulpatault]: https://github.com/paulpatault
[@sloboegen]: https://github.com/sloboegen
[@tekknoid]: https://github.com/tekknoid

<!-- Header links -->

Expand All @@ -28,5 +52,6 @@ Initial release prepared by [@chshersh].

<!-- Versions -->

[Unreleased]: https://github.com/chshersh/zbg/compare/v0.1.0...HEAD
[Unreleased]: https://github.com/chshersh/zbg/compare/v0.2.0...HEAD
[0.2.0]: https://github.com/chshersh/zbg/releases/tag/v0.2.0
[0.1.0]: https://github.com/chshersh/zbg/releases/tag/v0.1.0
2 changes: 1 addition & 1 deletion lib/main.ml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
let main () = Command_unix.run ~version:"0.1.0" ~build_info:"RWO" Cli.command
let main () = Command_unix.run ~version:"0.2.0" ~build_info:"RWO" Cli.command

0 comments on commit 7807b0e

Please sign in to comment.