aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md4
-rw-r--r--doc/antora.yml2
-rw-r--r--projectile.el4
3 files changed, 6 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 154d6a9..3d46244 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,13 +2,15 @@
## master (unreleased)
+## 2.7.0 (2022-11-22)
+
### New features
* [#1591](https://github.com/bbatsov/projectile/issues/1591): Add `project.el` integration that will make Projectile the default provider for project lookup.
* Add new command `projectile-find-references` (bound to `C-c C-p ?` and `C-c C-p s x`).
* [#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.
* Add a new defcustom (`projectile-dirconfig-file`) controlling the name of the file used as Projectile’s root marker and configuration file.
-* [#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.
+* [#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.
### Changes
diff --git a/doc/antora.yml b/doc/antora.yml
index c17811e..f0b99bc 100644
--- a/doc/antora.yml
+++ b/doc/antora.yml
@@ -2,6 +2,6 @@ name: projectile
title: Projectile
# We always provide version without patch here (e.g. 1.1),
# as patch versions should not appear in the docs.
-version: ~
+version: 2.7
nav:
- modules/ROOT/nav.adoc
diff --git a/projectile.el b/projectile.el
index 1360644..a5f10d2 100644
--- a/projectile.el
+++ b/projectile.el
@@ -5,7 +5,7 @@
;; Author: Bozhidar Batsov <bozhidar@batsov.dev>
;; URL: https://github.com/bbatsov/projectile
;; Keywords: project, convenience
-;; Version: 2.7.0-snapshot
+;; Version: 2.7.0
;; Package-Requires: ((emacs "25.1"))
;; This file is NOT part of GNU Emacs.
@@ -860,7 +860,7 @@ Should be set via .dir-locals.el.")
;;; Version information
-(defconst projectile-version "2.7.0-snapshot"
+(defconst projectile-version "2.7.0"
"The current version of Projectile.")
(defun projectile--pkg-version ()