Skip to content

Commit 558b01f

Browse files
committed
Release 1.1
1 parent dbcddfe commit 558b01f

2 files changed

Lines changed: 14 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,23 @@
22

33
## master (unreleased)
44

5+
## 1.1.0 (2025-02-14)
6+
57
### New features
68

7-
* Improve `helm-source-proctile-project-list` by also inheriting the `helm-type-file` class to benefit of it's functionality
8-
such as candidate transformer or file cache.
9+
* Improve `helm-source-proctile-project-list` by also inheriting the
10+
`helm-type-file` class to benefit of it's functionality such as candidate
11+
transformer or file cache.
912
* [#180](https://github.com/bbatsov/helm-projectile/pull/180): Introduce `helm-projectile-ignore-strategy` defcustom.
1013

1114
### Changes
1215

16+
* [#151](https://github.com/bbatsov/helm-projectile/pull/157): Teach `helm-projectile-rg` to respect ignored files and directories.
17+
* [#151](https://github.com/bbatsov/helm-projectile/issues/151): Rename `helm-projectile-switch-to-eshell` -> `helm-projectile-switch-to-shell`.
18+
1319
### Bugs fixed
1420

1521
* [#176](https://github.com/bbatsov/helm-projectile/pull/178): Correctly remove current buffer from `helm-source-projectile-buffers-list`.
16-
* [#151](https://github.com/bbatsov/helm-projectile/pull/157): Teach `helm-projectile-rg` to respect ignored files and directories.
17-
* [#151](https://github.com/bbatsov/helm-projectile/issues/151): Rename `helm-projectile-switch-to-eshell` -> `helm-projectile-switch-to-shell`.
1822
* [#143](https://github.com/bbatsov/helm-projectile/issues/143): Fix rg command for helm-ag arity.
1923
* [#145](https://github.com/bbatsov/helm-projectile/issues/145): Fix bug in `M-D` / remove from project list action for first project in the list.
2024
* [#143](https://github.com/bbatsov/helm-projectile/issues/143): Fix `rg` command for `helm-ag` arity.

helm-projectile.el

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
;; URL: https://github.com/bbatsov/helm-projectile
77
;; Created: 2011-31-07
88
;; Keywords: project, convenience
9-
;; Version: 1.1.0-snapshot
9+
;; Version: 1.1.0
1010
;; Package-Requires: ((helm "3.0") (projectile "2.9") (cl-lib "0.3"))
1111

1212
;; This file is NOT part of GNU Emacs.
@@ -39,17 +39,20 @@
3939
;;
4040
;;; Code:
4141

42+
;; built-in libraries
4243
(require 'subr-x)
43-
(require 'projectile)
4444
(require 'cl-lib)
45-
(require 'grep)
45+
(require 'grep) ;; TODO: Probably we should defer this require
46+
4647
(require 'helm-core)
4748
(require 'helm-global-bindings)
4849
(require 'helm-types)
4950
(require 'helm-locate)
5051
(require 'helm-buffers)
5152
(require 'helm-files)
5253

54+
(require 'projectile)
55+
5356
(declare-function eshell "eshell")
5457
(declare-function helm-do-ag "ext:helm-ag")
5558
(declare-function dired-get-filename "dired")

0 commit comments

Comments
 (0)