diff --git a/README.md b/README.md index 2cd68d2..372b62e 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,17 @@ Unless you want to develop this package, it is recommended that you use it from (require 'julia-mode) ``` +Alternatively, if you are using [`use-package`](https://github.com/jwiegley/use-package), which has been [part of Emacs](https://www.gnu.org/software/emacs/manual/html_mono/use-package.html) since version 29.1, you can use + +```elisp +(use-package julia-mode + :ensure t) +``` + +### A note on versioning + +The code has been on a “rolling release” model before version 1.0: not all code changes were accompanied by a version increment. From version 1.0, we follow [semantic versioning](https://semver.org/). + ### Installing from Source To get the latest version of `julia-mode`, clone this repository and then use: diff --git a/julia-mode.el b/julia-mode.el index e877737..af8418b 100644 --- a/julia-mode.el +++ b/julia-mode.el @@ -1,8 +1,8 @@ ;;; julia-mode.el --- Major mode for editing Julia source code -*- lexical-binding: t -*- -;; Copyright (C) 2009-2014 Julia contributors, 2015-2020 julia-mode contributors +;; Copyright (C) 2009-2014 Julia contributors, 2015-2024 julia-mode.el contributors ;; URL: https://github.com/JuliaEditorSupport/julia-emacs -;; Version: 0.4 +;; Version: 1.0.0 ;; Keywords: languages ;; Package-Requires: ((emacs "26.1"))