Skip to content

Commit e3bae8c

Browse files
committed
Release 2.6
1 parent 41c60b3 commit e3bae8c

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

CHANGELOG.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## master (unreleased)
44

5+
## 2.6.0 (2022-10-25)
6+
57
### New features
68

79
* [#1790](https://github.com/bbatsov/projectile/pull/1790): Add `src-dir` and `test-dir` properties for the mill project type.
@@ -13,12 +15,12 @@
1315
* [#1718](https://github.com/bbatsov/projectile/issues/1718): Add a project type definition for `GNUMakefile`.
1416
* [#1747](https://github.com/bbatsov/projectile/pull/1747): Add support for preset-based install-commands for CMake projects.
1517
* [#1768](https://github.com/bbatsov/projectile/pull/1768) Add support for disabling command caching on a per-project basis.
16-
* [#1797](https://github.com/bbatsov/projectile/pull/1797) Make all project type attributes locally overridable
17-
* [#1803](https://github.com/bbatsov/projectile/pull/1803): Add support go-task/task
18+
* [#1797](https://github.com/bbatsov/projectile/pull/1797) Make all project type attributes locally overridable.
19+
* [#1803](https://github.com/bbatsov/projectile/pull/1803): Add support go-task/task.
1820

1921
### Bugs fixed
2022

21-
* [#1781](https://github.com/bbatsov/projectile/pull/1781): Fix `rails-rspec` and `rails-test` to use `app` instead of `lib` as `src-dir`
23+
* [#1781](https://github.com/bbatsov/projectile/pull/1781): Fix `rails-rspec` and `rails-test` to use `app` instead of `lib` as `src-dir`.
2224
* [#1762](https://github.com/bbatsov/projectile/pull/1762): Fix `projectile-globally-ignored-directories` unescaped regex.
2325
* [#1713](https://github.com/bbatsov/projectile/issues/1731): Fix `projectile-discover-projects-in-directory` reordering known projects.
2426
* [#1514](https://github.com/bbatsov/projectile/issues/1514): Fix `projectile-ag` global ignores not in effect.
@@ -27,16 +29,16 @@
2729
* [#1750](https://github.com/bbatsov/projectile/issues/1750): Fix source and test directories for Maven projects.
2830
* [#1765](https://github.com/bbatsov/projectile/issues/1765): Fix `src-dir`/`test-dir` not defaulting to `"src/"` and `"test/"` with `projectile-toggle-between-implementation-and-test`.
2931
* Fix version extraction logic.
30-
* [1654](https://github.com/bbatsov/projectile/issues/1654) Fix consecutive duplicates appearing in command history
31-
* [#1755](https://github.com/bbatsov/projectile/issues/1755) Cache failure to find project root
32+
* [1654](https://github.com/bbatsov/projectile/issues/1654) Fix consecutive duplicates appearing in command history.
33+
* [#1755](https://github.com/bbatsov/projectile/issues/1755) Cache failure to find project root.
3234

3335
### Changes
3436

3537
* [#1785](https://github.com/bbatsov/projectile/pull/1785): Give the project type "go" higher precedence than universal types, namely "make".
3638
* [#1447](https://github.com/bbatsov/projectile/issues/1447): Restructure the menu.
3739
* [#1692](https://github.com/bbatsov/projectile/issues/1692): Enable minibuffer completions when reading shell-commands.
3840
* Change the Grails project marker to `application.yml`.
39-
* [#1789](https://github.com/bbatsov/projectile/pull/1789): Progress reporter for recursive progress discovery
41+
* [#1789](https://github.com/bbatsov/projectile/pull/1789): Progress reporter for recursive progress discovery.
4042
* [#1708](https://github.com/bbatsov/projectile/issues/1708): `projectile-ripgrep` now consistently searches hidden files.
4143

4244
## 2.5.0 (2021-08-10)

projectile.el

+2-2
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.6.0-snapshot
8+
;; Version: 2.6.0
99
;; Package-Requires: ((emacs "25.1"))
1010

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

851851
;;; Version information
852852

853-
(defconst projectile-version "2.6.0-snapshot"
853+
(defconst projectile-version "2.6.0"
854854
"The current version of Projectile.")
855855

856856
(defun projectile--pkg-version ()

0 commit comments

Comments
 (0)