Skip to content

Commit 6d6b5a6

Browse files
authored
Merge pull request #701 from emacs-php/release/1.24.1
Bump up version 1.24.1
2 parents 45b4587 + ae3b0b1 commit 6d6b5a6

10 files changed

+32
-18
lines changed

Diff for: CHANGELOG.md

+16-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
All notable changes of the PHP Mode 1.19.1 release series are documented in this file using the [Keep a CHANGELOG](https://keepachangelog.com/) principles.
44

5-
## Unreleased
5+
<!-- ## Unreleased -->
6+
7+
## [1.24.1] - 2022-10-08
68

79
### Added
810

@@ -12,7 +14,7 @@ All notable changes of the PHP Mode 1.19.1 release series are documented in this
1214
* Add `php-imenu-generic-expression-default` for default value or `php-imenu-generic-expression`
1315
* Add `php-imenu-generic-expression-legacy` for compatibility
1416
* Add `php-imenu-generic-expression-simple` for simple display
15-
* Add `php-project-project-find-function` compatible with `project-find-functions`
17+
* Add `php-project-project-find-function` compatible with `project-find-functions` ([#693])
1618

1719
### Changed
1820

@@ -27,9 +29,21 @@ All notable changes of the PHP Mode 1.19.1 release series are documented in this
2729
* Renamed `All Methods` to `Methods`
2830
* Removed `Public Methods`, `Protected Methods` and `Provate Methods`
2931
* Unified `Classes`, `Traits`, `Interfaces` into `Classes`
32+
* Modified regexp patterns ([#681])
33+
* Suppress compile-time warnings ([#683], [#690], [#697])
34+
35+
### Fixed
36+
37+
* Fix `php-run-builtin-web-server` to expand root path (#699)
3038

3139
[#669]: https://github.com/emacs-php/php-mode/pull/669
3240
[#680]: https://github.com/emacs-php/php-mode/pull/680
41+
[#681]: https://github.com/emacs-php/php-mode/pull/681
42+
[#683]: https://github.com/emacs-php/php-mode/pull/683
43+
[#690]: https://github.com/emacs-php/php-mode/pull/690
44+
[#693]: https://github.com/emacs-php/php-mode/pull/693
45+
[#697]: https://github.com/emacs-php/php-mode/pull/697
46+
[#699]: https://github.com/emacs-php/php-mode/pull/699
3347

3448
## [1.24.0] - 2021-03-07
3549

Diff for: README.ja.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ PHP Modeは[GNU General Public License Version 3][gpl-v3] (GPLv3) でライセ
310310
このプロジェクトは2017年まで[Eric James Michael Ritz][@ejmr]によりメンテナンスされていました。現在は[Friends of Emacs-PHP Development][@emacs-php]コミュニティが引き継いで開発しています。
311311

312312
> ```
313-
> Copyright (C) 2018-2020 Friends of Emacs-PHP development
313+
> Copyright (C) 2022 Friends of Emacs-PHP development
314314
> Copyright (C) 1999, 2000, 2001, 2003, 2004 Turadg Aleahmad
315315
> 2008 Aaron S. Hawley
316316
> 2011, 2012, 2013, 2014, 2015, 2016, 2017 Eric James Michael Ritz

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ This project originated in `php-mode.el` written by [Turadg Aleahmad][@turadg] i
289289
This project was maintained by [Eric James Michael Ritz][@ejmr] until 2017. Currently, the [Friends of Emacs-PHP Development][@emacs-php] community inherits PHP Mode.
290290

291291
> ```
292-
> Copyright (C) 2018-2020 Friends of Emacs-PHP development
292+
> Copyright (C) 2022 Friends of Emacs-PHP development
293293
> Copyright (C) 1999, 2000, 2001, 2003, 2004 Turadg Aleahmad
294294
> 2008 Aaron S. Hawley
295295
> 2011, 2012, 2013, 2014, 2015, 2016, 2017 Eric James Michael Ritz

Diff for: lisp/php-align.el

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
;;; php-align.el --- Alignment configuration for PHP -*- lexical-binding: t; -*-
22

33
;; Copyright (C) 2011 tetsujin (Yusuke Segawa)
4-
;; Copyright (C) 2020 Friends of Emacs-PHP development
4+
;; Copyright (C) 2022 Friends of Emacs-PHP development
55

66
;; Author: tetsujin (Yusuke Segawa) <tetsujin85 (at) gmail.com>
77
;; Maintainer: USAMI Kenta <[email protected]>
88
;; Keywords: php languages convenience align
99
;; Homepage: https://github.com/emacs-php/php-mode
10-
;; Version: 1.24.0
10+
;; Version: 1.24.1
1111
;; License: GPL-3.0-or-later
1212

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

Diff for: lisp/php-face.el

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
;;; php-face.el --- Face definitions for PHP script -*- lexical-binding: t; -*-
22

3-
;; Copyright (C) 2020 Friends of Emacs-PHP development
3+
;; Copyright (C) 2022 Friends of Emacs-PHP development
44

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

Diff for: lisp/php-local-manual.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
;;; php-local-manual.el --- Tools for local PHP manual -*- lexical-binding: t; -*-
22

3-
;; Copyright (C) 2020 Friends of Emacs-PHP development
3+
;; Copyright (C) 2022 Friends of Emacs-PHP development
44

55
;; Author: phil-s
66
;; Maintainer: USAMI Kenta <[email protected]>

Diff for: lisp/php-mode-debug.el

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
;;; php-mode-debug.el --- Debug functions for PHP Mode -*- lexical-binding: t; -*-
22

3-
;; Copyright (C) 2020 Friends of Emacs-PHP development
3+
;; Copyright (C) 2022 Friends of Emacs-PHP development
44

55
;; Author: USAMI Kenta <[email protected]>
66
;; URL: https://github.com/emacs-php/php-mode
77
;; Keywords: maint
8-
;; Version: 1.24.0
8+
;; Version: 1.24.1
99
;; License: GPL-3.0-or-later
1010

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

Diff for: lisp/php-mode.el

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
;;; php-mode.el --- Major mode for editing PHP code -*- lexical-binding: t; -*-
22

3-
;; Copyright (C) 2020 Friends of Emacs-PHP development
3+
;; Copyright (C) 2022 Friends of Emacs-PHP development
44
;; Copyright (C) 1999, 2000, 2001, 2003, 2004 Turadg Aleahmad
55
;; 2008 Aaron S. Hawley
66
;; 2011, 2012, 2013, 2014, 2015, 2016, 2017 Eric James Michael Ritz
@@ -9,11 +9,11 @@
99
;; Maintainer: USAMI Kenta <[email protected]>
1010
;; URL: https://github.com/emacs-php/php-mode
1111
;; Keywords: languages php
12-
;; Version: 1.24.0
12+
;; Version: 1.24.1
1313
;; Package-Requires: ((emacs "25.2"))
1414
;; License: GPL-3.0-or-later
1515

16-
(defconst php-mode-version-number "1.24.0"
16+
(defconst php-mode-version-number "1.24.1"
1717
"PHP Mode version number.")
1818

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

Diff for: lisp/php-project.el

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
;;; php-project.el --- Project support for PHP application -*- lexical-binding: t; -*-
22

3-
;; Copyright (C) 2020 Friends of Emacs-PHP development
3+
;; Copyright (C) 2022 Friends of Emacs-PHP development
44

55
;; Author: USAMI Kenta <[email protected]>
66
;; Keywords: tools, files
77
;; URL: https://github.com/emacs-php/php-mode
8-
;; Version: 1.24.0
8+
;; Version: 1.24.1
99
;; License: GPL-3.0-or-later
1010

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

Diff for: lisp/php.el

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
;;; php.el --- PHP support for friends -*- lexical-binding: t; -*-
22

3-
;; Copyright (C) 2020 Friends of Emacs-PHP development
3+
;; Copyright (C) 2022 Friends of Emacs-PHP development
44

55
;; Author: USAMI Kenta <[email protected]>
66
;; Created: 5 Dec 2018
7-
;; Version: 1.24.0
7+
;; Version: 1.24.1
88
;; Keywords: languages, php
99
;; Homepage: https://github.com/emacs-php/php-mode
1010
;; License: GPL-3.0-or-later

0 commit comments

Comments
 (0)