Skip to content

Commit

Permalink
PEL 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pierre-rouleau committed Nov 1, 2021
1 parent 0c284fe commit 5d8eab1
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Copyright (C) 2020, 2021 by Pierre Rouleau

# Author: Pierre Rouleau <[email protected]>
# Last Modified Time-stamp: <2021-11-01 15:52:48, updated by Pierre Rouleau>
# Last Modified Time-stamp: <2021-11-01 17:53:20, updated by Pierre Rouleau>
# Keywords: packaging, build-control

# This file is part of the PEL package
Expand Down Expand Up @@ -68,7 +68,7 @@ EMACS_INIT = "~/.emacs.d/init.el"

# -----------------------------------------------------------------------------
# PEL Package Version - increase this number on each release
PEL_VERSION := 0.4.0
PEL_VERSION := 0.4.1

# NOTE: Also update the version numbers in the following files:
# - NEWS
Expand Down
2 changes: 1 addition & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PEL -- Pragmatic Emacs Library -- NEWS -*- org -*-

* Changes Since Version 0.4.0:
* Version 0.4.1:
** Modifications:
- Fix: The File Management PDF now describes PEL's ability to select the
function used opening the recently opened files and properly describes the
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ PEL -- Pragmatic Emacs Library
:alt: License
:target: https://www.gnu.org/licenses/gpl-3.0.html

.. image:: https://img.shields.io/badge/Version->V0.4.0-teal
.. image:: https://img.shields.io/badge/Version->V0.4.1-teal
:alt: Version
:target: https://github.com/pierre-rouleau/pel/blob/master/NEWS#changes-since-version-040

Expand Down
2 changes: 1 addition & 1 deletion pel--base.el
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@
"Display and return PEL package version string.
Optionally insert it at point if INSERT is non-nil."
(interactive "P")
(let ((version "0.4.0"))
(let ((version "0.4.1"))
(if insert
(insert version))
(message "PEL version: %s" version)
Expand Down
2 changes: 1 addition & 1 deletion pel--options.el
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ the standard Emacs key bindings as well as PEL's specific key bindings."
:link `(file-link :tag "Directory of PDF table files" ,(pel-pdf-directory))
:link `(url-link :tag "PEL key maps PDF" ,(pel-pdf-file-url "-pel-key-maps"))
:link `(file-link :tag "PEL @ GitHub" "https://github.com/pierre-rouleau/pel")
:package-version '(pel . "0.4.0"))
:package-version '(pel . "0.4.1"))

;; ---------------------------------------------------------------------------
(defgroup pel-base-emacs nil
Expand Down
2 changes: 1 addition & 1 deletion pel-pkg.el
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
;;; -*- no-byte-compile: t -*-
(define-package "pel" "0.4.0" "Pragmatic Emacs Library"
(define-package "pel" "0.4.1" "Pragmatic Emacs Library"
;; The handling of Emacs package versions varies widely from package
;; to package. Unfortunately, version numbers that appear somewhat
;; *stable* or sometimes very misleading.
Expand Down
2 changes: 1 addition & 1 deletion pel.el
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

;; Author: Pierre Rouleau <[email protected]>
;; URL: https://github.com/pierre-rouleau/pel
;; Version: 0.4.0
;; Version: 0.4.1
;; Package-Requires: ((emacs "26.1") (use-package "2.4"))
;; Keywords: convenience

Expand Down

0 comments on commit 5d8eab1

Please sign in to comment.