Skip to content

Commit 14beeae

Browse files
committed
Release 2.7
1 parent 5703797 commit 14beeae

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@
22

33
## master (unreleased)
44

5+
## 2.7.0 (2022-11-22)
6+
57
### New features
68

79
* [#1591](https://github.com/bbatsov/projectile/issues/1591): Add `project.el` integration that will make Projectile the default provider for project lookup.
810
* Add new command `projectile-find-references` (bound to `C-c C-p ?` and `C-c C-p s x`).
911
* [#1737](https://github.com/bbatsov/projectile/pull/1737): Add helpers for `dir-local-variables` for 3rd party use. Functions `projectile-add-dir-local-variable` and `projectile-delete-dir-local-variable` wrap their built-in counterparts. They always use `.dir-locals.el` from the root of the current Projectile project.
1012
* Add a new defcustom (`projectile-dirconfig-file`) controlling the name of the file used as Projectile’s root marker and configuration file.
11-
* [#1813](https://github.com/bbatsov/projectile/pull/1813): Allow project-files to contain wildcards and allow multiple project-files per project type registration. Add a new project-type for .NET solutions.
13+
* [#1813](https://github.com/bbatsov/projectile/pull/1813): Allow project-files to contain wildcards and allow multiple project-files per project type registration. Add a new project-type for .NET solutions.
1214

1315
### Changes
1416

doc/antora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ name: projectile
22
title: Projectile
33
# We always provide version without patch here (e.g. 1.1),
44
# as patch versions should not appear in the docs.
5-
version: ~
5+
version: 2.7
66
nav:
77
- modules/ROOT/nav.adoc

projectile.el

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

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

861861
;;; Version information
862862

863-
(defconst projectile-version "2.7.0-snapshot"
863+
(defconst projectile-version "2.7.0"
864864
"The current version of Projectile.")
865865

866866
(defun projectile--pkg-version ()

0 commit comments

Comments
 (0)