Skip to content

Commit

Permalink
Extracted CHANGELOG out of README
Browse files Browse the repository at this point in the history
  • Loading branch information
shyiko committed Oct 8, 2017
1 parent 4c5a363 commit beda21d
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 10 deletions.
44 changes: 44 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [0.3.3] - 2017-10-07

### Fixed
- Terminal in inconsistent state after interrupt signal (`^C`) ([#12](https://github.com/shyiko/commacd/issues/12)).

## [0.3.2] - 2016-05-29

### Fixed
- COMMACD_CD handling [#10](https://github.com/shyiko/commacd/issues/10) (thanks to [@chilicuil](https://github.com/chilicuil)).

## [0.3.1] - 2015-08-29

### Fixed
- VCS root lookup (`,,`) in case of nested checkouts (`/.../checkout_1/.../checkout_2`).

## [0.3.0] - 2015-07-14

### Added
- A way to change enumeration of "multiple choices" to start from 1 (instead of default 0) (use `export COMMACD_SEQSTART=1` to activate) (thanks to [@skorochkin](https://github.com/skorochkin)).

## [0.2.1] - 2014-11-08

## Fixed
- Order of `,,`'s prefix/substring matching.

## [0.2.0] - 2014-11-07

## Added
- Substring (fuzzy) matching as a fallback to the default prefix lookup (can be turned off with `export COMMACD_NOFUZZYFALLBACK="on"`).

## 0.1.0 - 2014-11-07

[0.3.3]: https://github.com/shyiko/commacd/compare/v0.3.2...v0.3.3
[0.3.2]: https://github.com/shyiko/commacd/compare/v0.3.1...v0.3.2
[0.3.1]: https://github.com/shyiko/commacd/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/shyiko/commacd/compare/v0.2.1...v0.3.0
[0.2.1]: https://github.com/shyiko/commacd/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/shyiko/commacd/compare/v0.1.0...v0.2.0
11 changes: 1 addition & 10 deletions readme.md → README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

A faster way to move around (Bash 3+).

> While going through "Usage" section please keep in mind that `commacd` is NOT an [autojump](https://github.com/joelthelion/autojump)/[z](https://github.com/rupa/z)/[fasd](https://github.com/clvv/fasd) alternative nor they are mutualy exclusive. It doesn't track history, write any logs, nothing like that. It really is just an improved `cd`.
> While going through "Usage" section please keep in mind that `commacd` is NOT an [autojump](https://github.com/joelthelion/autojump)/[z](https://github.com/rupa/z)/[fasd](https://github.com/clvv/fasd) alternative nor they are mutually exclusive. It doesn't track history or write any logs. Think of it as improved `cd`.
## Installation

Expand Down Expand Up @@ -75,15 +75,6 @@ For more information, please refer to http://shyiko.com/2014/10/10/commacd/.
make # lint sources and run tests
```

## Changelog

- 0.3.2 - Fixed COMMACD_CD handling [#10](https://github.com/shyiko/commacd/issues/10) (thanks to [@chilicuil](https://github.com/chilicuil)).
- 0.3.1 - Fixed VCS root lookup (`,,`) in case of nested checkouts (`/.../checkout_1/.../checkout_2`).
- 0.3.0 - Improved tab completion. "multiple choices" can now start with 1 (still 0 by default, but can be changed using `export COMMACD_SEQSTART=1`) (thanks to [@skorochkin](https://github.com/skorochkin)).
- 0.2.1 - Ordered prefix/substring matching of `,,`.
- 0.2.0 - Added substring (fuzzy) matching as a fallback to the default prefix lookup (can be turned off with `export COMMACD_NOFUZZYFALLBACK="on"`).
- 0.1.0 - Starting point.

## License

[MIT License](http://opensource.org/licenses/mit-license.php)
Expand Down

0 comments on commit beda21d

Please sign in to comment.