branch: externals/bnf-mode commit fd836210c88e49a7754779c481efb62ddaecc2cd Author: Serghei Iakovlev <serg...@phalconphp.com> Commit: Serghei Iakovlev <serg...@phalconphp.com>
Bump version --- CHANGELOG.org | 4 ++-- README.org | 7 +++---- bnf-mode.el | 5 +++-- test/bnf-mode-font-test.el | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.org b/CHANGELOG.org index 8334f11..4704a7a 100644 --- a/CHANGELOG.org +++ b/CHANGELOG.org @@ -5,8 +5,8 @@ All notable changes to this project will be documented in this file. The format is based on [[http://keepachangelog.com][Keep a Changelog]] and this project adheres to [[http://semver.org][Semantic Versioning]]. -** [[https://github.com/sergeyklay/bnf-mode/compare/0.2.0...HEAD][Unreleased]] - +** [[https://github.com/sergeyklay/bnf-mode/compare/0.3.0...HEAD][Unreleased]] +** [[https://github.com/sergeyklay/bnf-mode/compare/0.2.0...0.3.0][0.3.0]] - 2019-03-17 *** Changed - LHS nonterminals may be preceded by an unlimited number of spaces diff --git a/README.org b/README.org index 8c37260..ecf5140 100644 --- a/README.org +++ b/README.org @@ -12,10 +12,9 @@ A GNU Emacs major mode for editing BNF grammars. Richard Feynman #+end_quote -Currently provides basic syntax and font-locking for BNF files. -EBNF and ABNF are in my plans for the near future. At this time BNF Mode -is not an absolutely accurate implementation of the standards and -recommendations, but I'll try to be as close to them as possible. +Currently provides basic syntax and font-locking for BNF files. BNF notation is +supported exactly form as it was first announced in the ALGOL 60 report. +EBNF and ABNF are not supported but in my plans for the near future. When developing this mode, the following RFCs were taken into account: diff --git a/bnf-mode.el b/bnf-mode.el index 1585922..88cbd05 100644 --- a/bnf-mode.el +++ b/bnf-mode.el @@ -4,7 +4,7 @@ ;; Author: Serghei Iakovlev (concat "sadhooklay" "@" "gmail" ".com") ;; Maintainer: Serghei Iakovlev -;; Version: 0.2.0 +;; Version: 0.3.0 ;; URL: https://github.com/sergeyklay/bnf-mode ;; Keywords: languages ;; Package-Requires: ((cl-lib "0.5") (pkg-info "0.4") (emacs "24.3")) @@ -31,7 +31,8 @@ ;;; Commentary: ;; GNU Emacs major mode for editing BNF grammars. Currently this mode -;; provides basic syntax and font-locking for BNF files. +;; provides basic syntax and font-locking for BNF files. BNF notation is +;; supported exactly form as it was first announced in the ALGOL 60 report. ;; ;; When developing this mode, the following RFCs were taken into account: ;; diff --git a/test/bnf-mode-font-test.el b/test/bnf-mode-font-test.el index 25cc3d4..dd8a399 100644 --- a/test/bnf-mode-font-test.el +++ b/test/bnf-mode-font-test.el @@ -4,7 +4,7 @@ ;; Author: Serghei Iakovlev (concat "sadhooklay" "@" "gmail" ".com") ;; Maintainer: Serghei Iakovlev -;; Version: 0.2.0 +;; Version: 0.3.0 ;; URL: https://github.com/sergeyklay/bnf-mode ;; This file is not part of GNU Emacs.