Skip to content

Commit 9a2fe1c

Browse files
committed
Bump up version 1.26.1
1 parent 103cc77 commit 9a2fe1c

13 files changed

+19
-14
lines changed

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes of the PHP Mode 1.19.1 release series are documented in this
44

55
<!-- ## Unreleased -->
66

7-
## [1.26.0] - 2024-09-13
7+
## [1.26.1] - 2024-09-13
88

99
### Added
1010

@@ -49,6 +49,11 @@ All notable changes of the PHP Mode 1.19.1 release series are documented in this
4949
[emacs-php/php-ts-mode#68]: https://github.com/emacs-php/php-ts-mode/pull/68
5050
[PEAR Coding Standards]: https://pear.php.net/manual/en/standards.php
5151

52+
## [1.26.0] - 2024-09-13
53+
54+
> [!NOTE]
55+
> This version was cancelled due to a release error.
56+
5257
## [1.25.1] - 2023-11-24
5358

5459
### Added

Eask

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
(package "php-mode"
2-
"1.25.1"
2+
"1.26.1"
33
"Major mode for editing PHP code")
44

55
(website-url "https://github.com/emacs-php/php-mode")

lisp/php-align.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
;; Maintainer: USAMI Kenta <[email protected]>
88
;; Keywords: php languages convenience align
99
;; Homepage: https://github.com/emacs-php/php-mode
10-
;; Version: 1.25.1
10+
;; Version: 1.26.1
1111
;; License: GPL-3.0-or-later
1212

1313
;; This program is free software; you can redistribute it and/or modify

lisp/php-complete.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
;; Author: USAMI Kenta <[email protected]>
77

88
;; Created: 18 Sep 2022
9-
;; Version: 1.25.1
9+
;; Version: 1.26.1
1010
;; Keywords: languages, php
1111

1212
;; This program is free software; you can redistribute it and/or modify

lisp/php-defs.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
;; Author: USAMI Kenta <[email protected]>
66
;; Created: 5 Mar 2022
7-
;; Version: 1.25.1
7+
;; Version: 1.26.1
88
;; Keywords: languages, php
99

1010
;; This program is free software; you can redistribute it and/or modify

lisp/php-face.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
;; Author: USAMI Kenta <[email protected]>
66
;; Created: 5 May 2019
7-
;; Version: 1.25.1
7+
;; Version: 1.26.1
88
;; Keywords: faces, php
99
;; Homepage: https://github.com/emacs-php/php-mode
1010
;; License: GPL-3.0-or-later

lisp/php-flymake.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
;; Author: USAMI Kenta <[email protected]>
66
;; Created: 5 Mar 2022
7-
;; Version: 1.25.1
7+
;; Version: 1.26.1
88
;; Keywords: tools, languages, php
99

1010
;; This program is free software; you can redistribute it and/or modify

lisp/php-ide-phpactor.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
;; Author: USAMI Kenta <[email protected]>
66
;; Keywords: tools, files
77
;; URL: https://github.com/emacs-php/php-mode
8-
;; Version: 1.25.1
8+
;; Version: 1.26.1
99
;; License: GPL-3.0-or-later
1010

1111
;; This program is free software; you can redistribute it and/or modify

lisp/php-ide.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
;; Author: USAMI Kenta <[email protected]>
66
;; Keywords: tools, files
77
;; URL: https://github.com/emacs-php/php-mode
8-
;; Version: 1.25.1
8+
;; Version: 1.26.1
99
;; License: GPL-3.0-or-later
1010

1111
;; This program is free software; you can redistribute it and/or modify

lisp/php-mode-debug.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
;; Author: USAMI Kenta <[email protected]>
66
;; URL: https://github.com/emacs-php/php-mode
77
;; Keywords: maint
8-
;; Version: 1.25.1
8+
;; Version: 1.26.1
99
;; License: GPL-3.0-or-later
1010

1111
;; This program is free software; you can redistribute it and/or modify

lisp/php-mode.el

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
;; Maintainer: USAMI Kenta <[email protected]>
1010
;; URL: https://github.com/emacs-php/php-mode
1111
;; Keywords: languages php
12-
;; Version: 1.25.1
12+
;; Version: 1.26.1
1313
;; Package-Requires: ((emacs "26.1"))
1414
;; License: GPL-3.0-or-later
1515

1616
(eval-and-compile
1717
(make-obsolete-variable
18-
(defconst php-mode-version-number "1.25.1" "PHP Mode version number.")
18+
(defconst php-mode-version-number "1.26.1" "PHP Mode version number.")
1919
"Please call (php-mode-version :as-number t) for compatibility." "1.24.2"))
2020

2121
;; This program is free software; you can redistribute it and/or modify

lisp/php-project.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
;; Author: USAMI Kenta <[email protected]>
66
;; Keywords: tools, files
77
;; URL: https://github.com/emacs-php/php-mode
8-
;; Version: 1.25.1
8+
;; Version: 1.26.1
99
;; License: GPL-3.0-or-later
1010

1111
;; This program is free software; you can redistribute it and/or modify

lisp/php.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
;; Author: USAMI Kenta <[email protected]>
77
;; Created: 5 Dec 2018
8-
;; Version: 1.25.1
8+
;; Version: 1.26.1
99
;; Keywords: languages, php
1010
;; Homepage: https://github.com/emacs-php/php-mode
1111
;; License: GPL-3.0-or-later

0 commit comments

Comments
 (0)