Skip to content

Commit 48d0a30

Browse files
committed
Release 2.9
1 parent cdb22f6 commit 48d0a30

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

CHANGELOG.md

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

33
## master (unreleased)
44

5+
## 2.9.0 (2025-02-12)
6+
57
### New features
68

79
* [#1870](https://github.com/bbatsov/projectile/pull/1870): Add package command for CMake projects.
@@ -37,6 +39,8 @@
3739

3840
This makes caching both more robust and faster, as before the cache file
3941
for all projects was loaded when projectile-mode was enabled.
42+
* Make the cache transient by default. (meaning it lives only in memory and is not persisted to a file)
43+
* To enable persistent caching you need to set `projectile-enable-caching` to `'persistent`.
4044
* Speed-up load time by moving known projects initialization outside of `projectile-mode`'s init.
4145
* As a side effect the known projects will be initialized properly even if you're not using `projectile-mode`.
4246
* The projects are read from disk the first time you invoke `projectile-switch-project` or a similar command.
@@ -48,8 +52,6 @@
4852
* `c t` -> `projectile-test-project`
4953
* `c r` -> `projectile-run-project`
5054
* The old keybindings will be removed in a future version of Projectile.
51-
* Make the cache transient by default. (meaning it lives only in memory and is not persisted to a file)
52-
* To enable persistent caching you need to set `projectile-enable-caching` to `'persistent`.
5355

5456
## 2.8.0 (2023-10-13)
5557

projectile.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
;; Author: Bozhidar Batsov <[email protected]>
66
;; URL: https://github.com/bbatsov/projectile
77
;; Keywords: project, convenience
8-
;; Version: 2.9.0-snapshot
8+
;; Version: 2.9.0
99
;; Package-Requires: ((emacs "26.1"))
1010

1111
;; This file is NOT part of GNU Emacs.
@@ -942,7 +942,7 @@ Should be set via .dir-locals.el.")
942942

943943
;;; Version information
944944

945-
(defconst projectile-version "2.9.0-snapshot"
945+
(defconst projectile-version "2.9.0"
946946
"The current version of Projectile.")
947947

948948
(defun projectile--pkg-version ()

0 commit comments

Comments
 (0)