WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 375418d

Browse files
authored
Prepare v0.8.2 (#262)
* Update CHANGELOG * 2021 * Prepare v0.8.2
1 parent 3f56ff9 commit 375418d

File tree

6 files changed

+51
-8
lines changed

6 files changed

+51
-8
lines changed

CHANGELOG.md

Lines changed: 45 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,46 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
98
## [Unreleased]
109

1110
### Added
1211

12+
### Changed
13+
14+
### Deprecated
15+
16+
### Removed
17+
18+
### Fixed
19+
20+
### Security
21+
22+
23+
## [0.8.2] - 2021-08-13
24+
25+
### Added
26+
1327
- Add rustic-mode to editorconfig-indentation-alist ([#208])
1428
- Add conf-mode abbrev-table definitions ([#220])
29+
- Add meson-mode indentation rule ([#253])
30+
- Add support for rjsx-mode ([#254])
31+
- Update README for NonGNU ELPA repository ([#259])
32+
- Add new implementation of editorconfig-mode ([#248], [#250], [#251], [#255], [#258], [#260])
33+
- By default this is disabled: set `(setq editorconfig--enable-20210221-testing t)` to use this
1534

1635
### Fixed
1736

1837
- Fix so that "?" does not match "/" ([#211])
1938
- Fix document typo ([#213])
2039
- Don't make unchanged vars buffer-local ([#222])
40+
- Silence byte-compiler warnings ([#235])
41+
- Use revert-buffer-with-coding-system to set coding system ([#236])
42+
- Do not run editorconfig-apply on recentf-save-file ([#241])
43+
- Skip special-mode buffers when applying ([#247])
44+
- Stop excluding remote files by default ([#234], [#245])
45+
- Fix editorconfig execution for remote hosts via tramp ([#249])
46+
- Add minor fixes to tests ([#252])
47+
- Fix excluding the recentf-save-file when in a symlinked directory ([#256])
2148

2249
### Changed
2350

@@ -199,7 +226,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
199226
*Undocumented*
200227

201228

202-
[Unreleased]: https://github.com/editorconfig/editorconfig-emacs/compare/v0.8.1...HEAD
229+
[Unreleased]: https://github.com/editorconfig/editorconfig-emacs/compare/v0.8.2...HEAD
230+
[0.8.2]: https://github.com/editorconfig/editorconfig-emacs/compare/v0.8.1...v0.8.2
203231
[0.8.1]: https://github.com/editorconfig/editorconfig-emacs/compare/v0.8.0...v0.8.1
204232
[0.8.0]: https://github.com/editorconfig/editorconfig-emacs/compare/v0.7.14...v0.8.0
205233
[0.7.14]: https://github.com/editorconfig/editorconfig-emacs/compare/v0.7.13...v0.7.14
@@ -225,6 +253,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
225253
[0.3]: https://github.com/editorconfig/editorconfig-emacs/compare/v0.2...v0.3
226254
[0.2]: https://github.com/editorconfig/editorconfig-emacs/compare/v0.1...v0.2
227255
[0.1]: https://github.com/editorconfig/editorconfig-emacs/releases/tag/v0.1
256+
[#260]: https://github.com/editorconfig/editorconfig-emacs/issues/260
257+
[#258]: https://github.com/editorconfig/editorconfig-emacs/issues/258
258+
[#255]: https://github.com/editorconfig/editorconfig-emacs/issues/255
259+
[#251]: https://github.com/editorconfig/editorconfig-emacs/issues/251
260+
[#250]: https://github.com/editorconfig/editorconfig-emacs/issues/250
261+
[#248]: https://github.com/editorconfig/editorconfig-emacs/issues/248
262+
[#259]: https://github.com/editorconfig/editorconfig-emacs/issues/259
263+
[#256]: https://github.com/editorconfig/editorconfig-emacs/issues/256
264+
[#252]: https://github.com/editorconfig/editorconfig-emacs/issues/252
265+
[#249]: https://github.com/editorconfig/editorconfig-emacs/issues/249
266+
[#245]: https://github.com/editorconfig/editorconfig-emacs/issues/245
267+
[#234]: https://github.com/editorconfig/editorconfig-emacs/issues/234
268+
[#241]: https://github.com/editorconfig/editorconfig-emacs/issues/241
269+
[#236]: https://github.com/editorconfig/editorconfig-emacs/issues/236
270+
[#235]: https://github.com/editorconfig/editorconfig-emacs/issues/235
228271
[#222]: https://github.com/editorconfig/editorconfig-emacs/issues/222
229272
[#222]: https://github.com/editorconfig/editorconfig-emacs/issues/222
230273
[#220]: https://github.com/editorconfig/editorconfig-emacs/issues/220

editorconfig-conf-mode.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
;;; editorconfig-conf-mode.el --- Major mode for editing .editorconfig files -*- lexical-binding: t -*-
22

3-
;; Copyright (C) 2011-2020 EditorConfig Team
3+
;; Copyright (C) 2011-2021 EditorConfig Team
44

55
;; Author: EditorConfig Team <[email protected]>
66

editorconfig-core-handle.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
;;; editorconfig-core-handle.el --- Handle Class for EditorConfig File -*- lexical-binding: t -*-
22

3-
;; Copyright (C) 2011-2020 EditorConfig Team
3+
;; Copyright (C) 2011-2021 EditorConfig Team
44

55
;; Author: EditorConfig Team <[email protected]>
66

editorconfig-core.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
;;; editorconfig-core.el --- EditorConfig Core library in Emacs Lisp -*- lexical-binding: t -*-
22

3-
;; Copyright (C) 2011-2020 EditorConfig Team
3+
;; Copyright (C) 2011-2021 EditorConfig Team
44

55
;; Author: EditorConfig Team <[email protected]>
66

editorconfig-fnmatch.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
;;; editorconfig-fnmatch.el --- Glob pattern matching in Emacs lisp -*- lexical-binding: t -*-
22

3-
;; Copyright (C) 2011-2020 EditorConfig Team
3+
;; Copyright (C) 2011-2021 EditorConfig Team
44

55
;; Author: EditorConfig Team <[email protected]>
66

editorconfig.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
;;; editorconfig.el --- EditorConfig Emacs Plugin -*- lexical-binding: t -*-
22

3-
;; Copyright (C) 2011-2020 EditorConfig Team
3+
;; Copyright (C) 2011-2021 EditorConfig Team
44

55
;; Author: EditorConfig Team <[email protected]>
6-
;; Version: 0.8.1
6+
;; Version: 0.8.2
77
;; URL: https://github.com/editorconfig/editorconfig-emacs#readme
88
;; Package-Requires: ((cl-lib "0.5") (nadvice "0.3") (emacs "24"))
99

0 commit comments

Comments
 (0)