Skip to content

Commit

Permalink
Prepare for 0.5.0 release (#4)
Browse files Browse the repository at this point in the history
* Aggregate change entries

* Prepare CHANGELOG for 0.5.0 release

* Bump versions to 0.5.0
  • Loading branch information
marcaddeo committed Oct 11, 2019
1 parent 877704b commit 607e4f4
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 8 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.0] - 2019-10-11
### Added
- Add a build script to build releases for each target
- Add Linux (musl) installation instructions

### Changed
- Update add entry functionality to also stage the change entry in the git
index for committing

### Fixed
- Fix error when piping the output of `cl`

## [0.4.0] - 2019-10-11
### Added
- Add installation instructions for Debian
Expand All @@ -29,7 +41,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Initial implementation of `cl` binary

[Unreleased]: https://github.com/marcaddeo/cl/compare/0.4.0...HEAD
[Unreleased]: https://github.com/marcaddeo/cl/compare/0.5.0...HEAD
[0.5.0]: https://github.com/marcaddeo/cl/compare/0.4.0...0.5.0
[0.4.0]: https://github.com/marcaddeo/cl/compare/0.3.0...0.4.0
[0.3.0]: https://github.com/marcaddeo/cl/compare/0.2.0...0.3.0
[0.2.0]: https://github.com/marcaddeo/cl/compare/0.1.0...0.2.0
Expand Down
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.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cl"
version = "0.4.0"
version = "0.5.0"
description = "A command line tool for recording changes to be collected for use in a Keep A Changelog formatted CHANGELOG.md"
authors = ["Marc Addeo <[email protected]>"]
edition = "2018"
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ $ brew install marcaddeo/clsuite/cl

## Debian
```
$ curl -LO https://github.com/marcaddeo/cl/releases/download/0.4.0/cl_0.4.0_amd64.deb
$ sudo dpkg -i cl_0.4.0_amd64.deb
$ curl -LO https://github.com/marcaddeo/cl/releases/download/0.5.0/cl_0.5.0_amd64.deb
$ sudo dpkg -i cl_0.5.0_amd64.deb
```

### Linux
```
$ curl -LO https://github.com/marcaddeo/cl/releases/download/0.4.0/cl-0.4.0-x86_64-unknown-linux-musl.tar.gz
$ tar czvf cl-0.4.0-x86_64-unknown-linux-musl.tar.gz
$ curl -LO https://github.com/marcaddeo/cl/releases/download/0.5.0/cl-0.5.0-x86_64-unknown-linux-musl.tar.gz
$ tar czvf cl-0.5.0-x86_64-unknown-linux-musl.tar.gz
$ sudo mv cl /usr/local/bin/cl
```

Expand All @@ -35,7 +35,7 @@ $ cargo install --git https://github.com/marcaddeo/cl

## Usage
```
cl 0.4.0
cl 0.5.0
Marc Addeo <[email protected]>
A command line tool for recording changes to be collected for use in a Keep A Changelog formatted CHANGELOG.md
Expand Down

0 comments on commit 607e4f4

Please sign in to comment.