diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d71d4f..54eb625 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,18 +1,13 @@ # Change Log -All notable changes to flycheck-pony are documented in this file. +All notable changes to flycheck-pony are documented in this file. This project adheres to [Keep a CHANGELOG](http://keepachangelog.com/). -## [unreleased] - unreleased - -### Fixed - - -### Added - +## [0.2.2] - 2019-02-26 ### Changed +- run -rfinal instead of -rexpr for syntax check ## [0.2.1] - 2016-05-01 diff --git a/flycheck-pony.el b/flycheck-pony.el index 0535fb0..3f73b36 100644 --- a/flycheck-pony.el +++ b/flycheck-pony.el @@ -1,7 +1,7 @@ ;;; flycheck-pony.el --- Pony support in Flycheck ;; ;; Authors: Sean T Allen -;; Version: 0.2.1 +;; Version: 0.2.2 ;; URL: https://github.com/seantallen/flycheck-pony ;; Keywords: tools, convenience ;; Package-Requires: ((flycheck "0.25.1")) @@ -13,7 +13,7 @@ ;; ;;; Commentary: ;; -;; Pony syntax checking support for Flycheck. Runs "ponyc -rexpr" in the +;; Pony syntax checking support for Flycheck. Runs "ponyc -rfinal" in the ;; current working directory. ;; ;; You may need to customize the location of your Pony compiler if @@ -51,18 +51,18 @@ "A Pony syntax checker using the ponyc compiler. See URL `http://www.ponylang.org'." - :command ("ponyc" "-rexpr") + :command ("ponyc" "-rfinal") :standard-input nil :error-patterns ((error line-start (file-name) ":" line ":" column - (zero-or-more (or digit ":")) (message) line-end)) + (zero-or-more (or digit ":")) (message) line-end)) :modes ponylang-mode) (flycheck-define-checker pony-stable "A Pony syntax checker using pony-stable dependency management tool. See URL `https://github.com/jemc/pony-stable'." - :command ("stable" "env" "ponyc" "-rexpr") + :command ("stable" "env" "ponyc" "-rfinal") :standard-input nil :error-patterns ((error line-start (file-name) ":" line ":" column