Skip to content

Commit

Permalink
Release version 5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
raxod502 committed Feb 27, 2021
1 parent 42adc80 commit 2c0e9fc
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog].

## Unreleased
## 5.1 (released 2021-02-26)
### Enhancements
* Literal-prefix matching, a new filter method whose behavior is that
the first subquery must be the prefix of the candidate and the
remaining subqueries must be prefixes of words in the
candidate. Supports char folding just like `literal`.

For example, if the input is `foo bar`, then the candidate must
begin with `foo`, and it must also contain a word starting with
`bar`. That means it would match `foo-and-bar` or `fooboo-barquux`
but not `bar-foo` (because that doesn't start with `foo`) or
`foo-qbar` (because `bar` is no prefix of some word).

It can be enabled by adding `literal-prefix` to
`prescient-filter-method`.

Expand Down Expand Up @@ -87,7 +87,7 @@ The format is based on [Keep a Changelog].
[#76]: https://github.com/raxod502/prescient.el/pull/76
[#77]: https://github.com/raxod502/prescient.el/pull/77

## 5.0 (release 2020-07-16)
## 5.0 (released 2020-07-16)
### Breaking changes
* Candidates which are not strings are no longer supported. This
improves performance by a few percent, and there was never any real
Expand Down
4 changes: 2 additions & 2 deletions company-prescient.el
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
;; Homepage: https://github.com/raxod502/prescient.el
;; Keywords: extensions
;; Created: 7 May 2018
;; Package-Requires: ((emacs "25.1") (prescient "5.0") (company "0.9.6"))
;; Package-Requires: ((emacs "25.1") (prescient "5.1") (company "0.9.6"))
;; SPDX-License-Identifier: MIT
;; Version: 5.0
;; Version: 5.1

;;; Commentary:

Expand Down
4 changes: 2 additions & 2 deletions ivy-prescient.el
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
;; Homepage: https://github.com/raxod502/prescient.el
;; Keywords: extensions
;; Created: 1 May 2018
;; Package-Requires: ((emacs "25.1") (prescient "5.0") (ivy "0.11.0"))
;; Package-Requires: ((emacs "25.1") (prescient "5.1") (ivy "0.11.0"))
;; SPDX-License-Identifier: MIT
;; Version: 5.0
;; Version: 5.1

;;; Commentary:

Expand Down
2 changes: 1 addition & 1 deletion prescient.el
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
;; Created: 7 Aug 2017
;; Package-Requires: ((emacs "25.1"))
;; SPDX-License-Identifier: MIT
;; Version: 5.0
;; Version: 5.1

;;; Commentary:

Expand Down
4 changes: 2 additions & 2 deletions selectrum-prescient.el
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
;; Homepage: https://github.com/raxod502/prescient.el
;; Keywords: extensions
;; Created: 8 Dec 2019
;; Package-Requires: ((emacs "25.1") (prescient "5.0") (selectrum "1.0"))
;; Package-Requires: ((emacs "25.1") (prescient "5.1") (selectrum "1.0"))
;; SPDX-License-Identifier: MIT
;; Version: 5.0
;; Version: 5.1

;;; Commentary:

Expand Down

0 comments on commit 2c0e9fc

Please sign in to comment.