Skip to content

Commit

Permalink
Bump version 0.10.0-snapshot -> 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yasuyk committed May 30, 2017
1 parent 605e214 commit e3ae5f6
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
10 changes: 8 additions & 2 deletions CHANGES.md
@@ -1,15 +1,19 @@
# 0.10.0-snapshot (in development)
# Next release

- TODO for release 0.10.0
- TODO for release next release
- Update gif
- Update README.md

# 0.10.0

- New features:
- [\#11](https://github.com/yasuyk/helm-git-grep/issues/11 "#11") [\#23](https://github.com/yasuyk/helm-git-grep/issues/11 "#23") [\#26](https://github.com/yasuyk/helm-git-grep/issues/11 "#26") Can change base directory where on git-grep(1) is executed
- Can limit paths in git-grep(1) by [pathspec]

- Bug fixes:
- Fix that helm-git-grep-save-results can't work([d49001e])
- [\#28](https://github.com/yasuyk/helm-git-grep/issues/28 "#28") Use --null to disambiguate numeric filenames([6b5abd4])
- [\#34](https://github.com/yasuyk/helm-git-grep/issues/28 "#34") Remove references to (helm-)elscreen([e0990c6])

# 0.9.0 (Oct 10, 2016)

Expand Down Expand Up @@ -38,3 +42,5 @@
[pathspec]:https://git-scm.com/docs/gitglossary#def_pathspec
[1e0357f]:https://github.com/yasuyk/helm-git-grep/commit/1e0357f
[d49001e]:https://github.com/yasuyk/helm-git-grep/commit/d49001e
[6b5abd4]:https://github.com/yasuyk/helm-git-grep/commit/6b5abd45030d0c505bd4db7cc2a949ab5fa6d3ca
[e0990c6]:https://github.com/yasuyk/helm-git-grep/commit/e0990c68b6
10 changes: 5 additions & 5 deletions helm-git-grep.el
Expand Up @@ -7,7 +7,7 @@

;; Author: mechairoi
;; Maintainer: Yasuyuki Oka <yasuyk@gmail.com>
;; Version: 0.10.0-snapshot
;; Version: 0.10.0
;; URL: https://github.com/yasuyk/helm-git-grep
;; Package-Requires: ((helm-core "2.2.0"))

Expand Down Expand Up @@ -132,7 +132,7 @@ Examples:
(setq helm-git-grep-pathspecs '(\"*\" \":!:*.dvi\")
;; search all files except those matching *.dvi
Each pathspec need not be quoted by single quotes, because
`helm-git-grep' runs git with `start-process', which does not use
an inferior shell.
Expand Down Expand Up @@ -412,9 +412,9 @@ Argument SOURCE is not used."
(filename lineno content)
"Propertize FILENAME LINENO CONTENT and concatenate them."
(format "%s:%s:%s"
(propertize filename 'face 'helm-git-grep-file)
(propertize lineno 'face 'helm-git-grep-line)
(helm-git-grep-highlight-match content)))
(propertize filename 'face 'helm-git-grep-file)
(propertize lineno 'face 'helm-git-grep-line)
(helm-git-grep-highlight-match content)))

(defun helm-git-grep-highlight-match (content)
"Highlight matched text with `helm-git-grep-match' face in CONTENT."
Expand Down

1 comment on commit e3ae5f6

@stsquad
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The tag for this didn't come through so melpa-stable has yet to pick it up.

Please sign in to comment.