Skip to content

Commit

Permalink
Merge pull request #102 from kickingvegas/101-patch-to-support-doom-i…
Browse files Browse the repository at this point in the history
…nstall

Fix autoload to be explicit
  • Loading branch information
kickingvegas authored Apr 2, 2024
2 parents ace04fa + 9ef4a63 commit c583180
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,9 @@ create-merge-development-branch: checkout-development
create-pr:
gh pr create --base development --fill

create-patch-pr:
gh pr create --base main --fill

## Create GitHub pull request for release
create-release-pr: create-merge-development-branch bump
gh pr create --base main \
Expand All @@ -119,5 +122,5 @@ create-release-tag: checkout-main
git tag $(CASUAL_VERSION)
git push origin $(CASUAL_VERSION)

create-gh-release:
create-gh-release: create-release-tag
gh release create -t v$(CASUAL_VERSION) --notes-from-tag $(CASUAL_VERSION)
2 changes: 1 addition & 1 deletion lisp/casual-version.el
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

;;; Code:

(defconst casual-version "1.3.0"
(defconst casual-version "1.3.1"
"Casual Version.")

(defun casual-version ()
Expand Down
4 changes: 2 additions & 2 deletions lisp/casual.el
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
;; Author: Charles Choi <[email protected]>
;; URL: https://github.com/kickingvegas/casual
;; Keywords: tools
;; Version: 1.3.0
;; Version: 1.3.1
;; Package-Requires: ((emacs "29.1"))

;; This program is free software; you can redistribute it and/or modify
Expand Down Expand Up @@ -69,7 +69,7 @@
(calc-pop-stack (calc-stack-size)))

;; Menus
;;;###autoload
;;;###autoload (autoload 'casual-main-menu "casual" nil t)
(transient-define-prefix casual-main-menu ()
"Casual main menu."
[["Calc"
Expand Down

0 comments on commit c583180

Please sign in to comment.