emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/editorconfig 375418d: Prepare v0.8.2 (#262)


From: ELPA Syncer
Subject: [nongnu] elpa/editorconfig 375418d: Prepare v0.8.2 (#262)
Date: Fri, 13 Aug 2021 09:57:19 -0400 (EDT)

branch: elpa/editorconfig
commit 375418d1d63f6ec780876593181b6d39054919da
Author: 10sr <8.slashes@gmail.com>
Commit: GitHub <noreply@github.com>

    Prepare v0.8.2 (#262)
    
    * Update CHANGELOG
    
    * 2021
    
    * Prepare v0.8.2
---
 CHANGELOG.md                | 47 +++++++++++++++++++++++++++++++++++++++++++--
 editorconfig-conf-mode.el   |  2 +-
 editorconfig-core-handle.el |  2 +-
 editorconfig-core.el        |  2 +-
 editorconfig-fnmatch.el     |  2 +-
 editorconfig.el             |  4 ++--
 6 files changed, 51 insertions(+), 8 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 10df711..2b22162 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,19 +5,46 @@ All notable changes to this project will be documented in 
this file.
 The format is based on [Keep a 
Changelog](https://keepachangelog.com/en/1.0.0/),
 and this project adheres to [Semantic 
Versioning](https://semver.org/spec/v2.0.0.html).
 
-
 ## [Unreleased]
 
 ### Added
 
+### Changed
+
+### Deprecated
+
+### Removed
+
+### Fixed
+
+### Security
+
+
+## [0.8.2] - 2021-08-13
+
+### Added
+
 - Add rustic-mode to editorconfig-indentation-alist ([#208])
 - Add conf-mode abbrev-table definitions ([#220])
+- Add meson-mode indentation rule ([#253])
+- Add support for rjsx-mode ([#254])
+- Update README for NonGNU ELPA repository ([#259])
+- Add new implementation of editorconfig-mode ([#248], [#250], [#251], [#255], 
[#258], [#260])
+  - By default this is disabled: set `(setq 
editorconfig--enable-20210221-testing t)` to use this
 
 ### Fixed
 
 - Fix so that "?" does not match "/" ([#211])
 - Fix document typo ([#213])
 - Don't make unchanged vars buffer-local ([#222])
+- Silence byte-compiler warnings ([#235])
+- Use revert-buffer-with-coding-system to set coding system ([#236])
+- Do not run editorconfig-apply on recentf-save-file ([#241])
+- Skip special-mode buffers when applying ([#247])
+- Stop excluding remote files by default ([#234], [#245])
+- Fix editorconfig execution for remote hosts via tramp ([#249])
+- Add minor fixes to tests ([#252])
+- Fix excluding the recentf-save-file when in a symlinked directory ([#256])
 
 ### Changed
 
@@ -199,7 +226,8 @@ and this project adheres to [Semantic 
Versioning](https://semver.org/spec/v2.0.0
 *Undocumented*
 
 
-[Unreleased]: 
https://github.com/editorconfig/editorconfig-emacs/compare/v0.8.1...HEAD
+[Unreleased]: 
https://github.com/editorconfig/editorconfig-emacs/compare/v0.8.2...HEAD
+[0.8.2]: 
https://github.com/editorconfig/editorconfig-emacs/compare/v0.8.1...v0.8.2
 [0.8.1]: 
https://github.com/editorconfig/editorconfig-emacs/compare/v0.8.0...v0.8.1
 [0.8.0]: 
https://github.com/editorconfig/editorconfig-emacs/compare/v0.7.14...v0.8.0
 [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
 [0.3]: https://github.com/editorconfig/editorconfig-emacs/compare/v0.2...v0.3
 [0.2]: https://github.com/editorconfig/editorconfig-emacs/compare/v0.1...v0.2
 [0.1]: https://github.com/editorconfig/editorconfig-emacs/releases/tag/v0.1
+[#260]: https://github.com/editorconfig/editorconfig-emacs/issues/260
+[#258]: https://github.com/editorconfig/editorconfig-emacs/issues/258
+[#255]: https://github.com/editorconfig/editorconfig-emacs/issues/255
+[#251]: https://github.com/editorconfig/editorconfig-emacs/issues/251
+[#250]: https://github.com/editorconfig/editorconfig-emacs/issues/250
+[#248]: https://github.com/editorconfig/editorconfig-emacs/issues/248
+[#259]: https://github.com/editorconfig/editorconfig-emacs/issues/259
+[#256]: https://github.com/editorconfig/editorconfig-emacs/issues/256
+[#252]: https://github.com/editorconfig/editorconfig-emacs/issues/252
+[#249]: https://github.com/editorconfig/editorconfig-emacs/issues/249
+[#245]: https://github.com/editorconfig/editorconfig-emacs/issues/245
+[#234]: https://github.com/editorconfig/editorconfig-emacs/issues/234
+[#241]: https://github.com/editorconfig/editorconfig-emacs/issues/241
+[#236]: https://github.com/editorconfig/editorconfig-emacs/issues/236
+[#235]: https://github.com/editorconfig/editorconfig-emacs/issues/235
 [#222]: https://github.com/editorconfig/editorconfig-emacs/issues/222
 [#222]: https://github.com/editorconfig/editorconfig-emacs/issues/222
 [#220]: https://github.com/editorconfig/editorconfig-emacs/issues/220
diff --git a/editorconfig-conf-mode.el b/editorconfig-conf-mode.el
index 613dd7c..9d4182c 100644
--- a/editorconfig-conf-mode.el
+++ b/editorconfig-conf-mode.el
@@ -1,6 +1,6 @@
 ;;; editorconfig-conf-mode.el --- Major mode for editing .editorconfig files  
-*- lexical-binding: t -*-
 
-;; Copyright (C) 2011-2020 EditorConfig Team
+;; Copyright (C) 2011-2021 EditorConfig Team
 
 ;; Author: EditorConfig Team <editorconfig@googlegroups.com>
 
diff --git a/editorconfig-core-handle.el b/editorconfig-core-handle.el
index d6a212f..afe2dfd 100644
--- a/editorconfig-core-handle.el
+++ b/editorconfig-core-handle.el
@@ -1,6 +1,6 @@
 ;;; editorconfig-core-handle.el --- Handle Class for EditorConfig File  -*- 
lexical-binding: t -*-
 
-;; Copyright (C) 2011-2020 EditorConfig Team
+;; Copyright (C) 2011-2021 EditorConfig Team
 
 ;; Author: EditorConfig Team <editorconfig@googlegroups.com>
 
diff --git a/editorconfig-core.el b/editorconfig-core.el
index 7f31882..a5a9ce7 100644
--- a/editorconfig-core.el
+++ b/editorconfig-core.el
@@ -1,6 +1,6 @@
 ;;; editorconfig-core.el --- EditorConfig Core library in Emacs Lisp  -*- 
lexical-binding: t -*-
 
-;; Copyright (C) 2011-2020 EditorConfig Team
+;; Copyright (C) 2011-2021 EditorConfig Team
 
 ;; Author: EditorConfig Team <editorconfig@googlegroups.com>
 
diff --git a/editorconfig-fnmatch.el b/editorconfig-fnmatch.el
index 29103c9..3ff87fa 100644
--- a/editorconfig-fnmatch.el
+++ b/editorconfig-fnmatch.el
@@ -1,6 +1,6 @@
 ;;; editorconfig-fnmatch.el --- Glob pattern matching in Emacs lisp  -*- 
lexical-binding: t -*-
 
-;; Copyright (C) 2011-2020 EditorConfig Team
+;; Copyright (C) 2011-2021 EditorConfig Team
 
 ;; Author: EditorConfig Team <editorconfig@googlegroups.com>
 
diff --git a/editorconfig.el b/editorconfig.el
index 5b8ca01..84dd311 100644
--- a/editorconfig.el
+++ b/editorconfig.el
@@ -1,9 +1,9 @@
 ;;; editorconfig.el --- EditorConfig Emacs Plugin  -*- lexical-binding: t -*-
 
-;; Copyright (C) 2011-2020 EditorConfig Team
+;; Copyright (C) 2011-2021 EditorConfig Team
 
 ;; Author: EditorConfig Team <editorconfig@googlegroups.com>
-;; Version: 0.8.1
+;; Version: 0.8.2
 ;; URL: https://github.com/editorconfig/editorconfig-emacs#readme
 ;; Package-Requires: ((cl-lib "0.5") (nadvice "0.3") (emacs "24"))
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]