branch: elpa/git-commit commit 3cf308c1c4cdb9404e3d3c6f9935ad9f628311d9 Author: Jonas Bernoulli <jo...@bernoul.li> Commit: Jonas Bernoulli <jo...@bernoul.li>
Use new version string format for unreleased revisions "N-git" < "N"; but "N.50-git" > "N". --- docs/magit-section.org | 4 ++-- docs/magit-section.texi | 4 ++-- docs/magit.org | 4 ++-- docs/magit.texi | 4 ++-- lisp/git-commit-pkg.el | 8 ++++---- lisp/git-commit.el | 2 +- lisp/magit-libgit-pkg.el | 6 +++--- lisp/magit-libgit.el | 2 +- lisp/magit-pkg.el | 16 ++++++++-------- lisp/magit-section-pkg.el | 6 +++--- lisp/magit-section.el | 2 +- lisp/magit.el | 2 +- 12 files changed, 30 insertions(+), 30 deletions(-) diff --git a/docs/magit-section.org b/docs/magit-section.org index 86cec18781..f5a6bf933f 100644 --- a/docs/magit-section.org +++ b/docs/magit-section.org @@ -7,7 +7,7 @@ #+texinfo_dir_category: Emacs #+texinfo_dir_title: Magit-Section: (magit-section). #+texinfo_dir_desc: Use Magit sections in your own packages. -#+subtitle: for version 3.3.0-git +#+subtitle: for version 3.3.0.50-git #+setupfile: .orgconfig @@ -21,7 +21,7 @@ user options see [[info:magit#Sections]]. This manual documents how you can use sections in your own packages. #+texinfo: @noindent -This manual is for Magit-Section version 3.3.0-git. +This manual is for Magit-Section version 3.3.0.50-git. #+texinfo: @insertcopying :END: diff --git a/docs/magit-section.texi b/docs/magit-section.texi index b677998445..eee9b1ae2a 100644 --- a/docs/magit-section.texi +++ b/docs/magit-section.texi @@ -31,7 +31,7 @@ General Public License for more details. @finalout @titlepage @title Magit-Section Developer Manual -@subtitle for version 3.3.0-git +@subtitle for version 3.3.0.50-git @author Jonas Bernoulli @page @vskip 0pt plus 1filll @@ -54,7 +54,7 @@ user options see @ref{Sections,,,magit,}. This manual documents how you can use sections in your own packages. @noindent -This manual is for Magit-Section version 3.3.0-git. +This manual is for Magit-Section version 3.3.0.50-git. @insertcopying @end ifnottex diff --git a/docs/magit.org b/docs/magit.org index ae75ce3ee6..a42cfaadfa 100644 --- a/docs/magit.org +++ b/docs/magit.org @@ -7,7 +7,7 @@ #+texinfo_dir_category: Emacs #+texinfo_dir_title: Magit: (magit). #+texinfo_dir_desc: Using Git from Emacs with Magit. -#+subtitle: for version 3.3.0-git +#+subtitle: for version 3.3.0.50-git #+setupfile: .orgconfig @@ -20,7 +20,7 @@ directly from within Emacs. While many fine Git clients exist, only Magit and Git itself deserve to be called porcelains. #+texinfo: @noindent -This manual is for Magit version 3.3.0-git. +This manual is for Magit version 3.3.0.50-git. #+texinfo: @insertcopying :END: diff --git a/docs/magit.texi b/docs/magit.texi index 3bc55860cb..9b714e7b34 100644 --- a/docs/magit.texi +++ b/docs/magit.texi @@ -31,7 +31,7 @@ General Public License for more details. @finalout @titlepage @title Magit User Manual -@subtitle for version 3.3.0-git +@subtitle for version 3.3.0.50-git @author Jonas Bernoulli @page @vskip 0pt plus 1filll @@ -53,7 +53,7 @@ directly from within Emacs. While many fine Git clients exist, only Magit and Git itself deserve to be called porcelains. @noindent -This manual is for Magit version 3.3.0-git. +This manual is for Magit version 3.3.0.50-git. @insertcopying @end ifnottex diff --git a/lisp/git-commit-pkg.el b/lisp/git-commit-pkg.el index c6251041f8..92e75a0890 100644 --- a/lisp/git-commit-pkg.el +++ b/lisp/git-commit-pkg.el @@ -1,8 +1,8 @@ -(define-package "git-commit" "3.3.0-git" +(define-package "git-commit" "3.3.0.50-git" "Edit Git commit messages." - '((emacs "25.1") - (compat "28.1.1.2") - (transient "20210920") + '((emacs "25.1") + (compat "28.1.1.2") + (transient "20210920") (with-editor "20211001")) :homepage "https://magit.vc" :keywords '("git" "tools" "vc")) diff --git a/lisp/git-commit.el b/lisp/git-commit.el index c414b4306a..4ca3a8ca86 100644 --- a/lisp/git-commit.el +++ b/lisp/git-commit.el @@ -11,7 +11,7 @@ ;; Homepage: https://github.com/magit/magit ;; Keywords: git tools vc -;; Package-Version: 3.3.0-git +;; Package-Version: 3.3.0.50-git ;; Package-Requires: ( ;; (emacs "25.1") ;; (compat "28.1.1.2") diff --git a/lisp/magit-libgit-pkg.el b/lisp/magit-libgit-pkg.el index 7f64727da6..249bf94a61 100644 --- a/lisp/magit-libgit-pkg.el +++ b/lisp/magit-libgit-pkg.el @@ -1,8 +1,8 @@ -(define-package "magit-libgit" "3.3.0-git" +(define-package "magit-libgit" "3.3.0.50-git" "(POC) Teach Magit to use Libgit2." - '((emacs "25.1") + '((emacs "25.1") (compat "28.1.1.2") (libgit "0") - (magit "20211004")) + (magit "20221127")) :homepage "https://magit.vc" :keywords '("git" "tools" "vc")) diff --git a/lisp/magit-libgit.el b/lisp/magit-libgit.el index b78520e4b1..f94278d2c7 100644 --- a/lisp/magit-libgit.el +++ b/lisp/magit-libgit.el @@ -8,7 +8,7 @@ ;; Homepage: https://github.com/magit/magit ;; Keywords: git tools vc -;; Package-Version: 3.3.0-git +;; Package-Version: 3.3.0.50-git ;; Package-Requires: ( ;; (emacs "26.1") ;; (compat "28.1.1.2") diff --git a/lisp/magit-pkg.el b/lisp/magit-pkg.el index 6a9ea771ca..a3d03ed640 100644 --- a/lisp/magit-pkg.el +++ b/lisp/magit-pkg.el @@ -1,11 +1,11 @@ -(define-package "magit" "3.3.0-git" +(define-package "magit" "3.3.0.50-git" "A Git porcelain inside Emacs." - '((emacs "25.1") - (compat "28.1.1.2") - (dash "20210826") - (git-commit "20220222") - (magit-section "20220325") - (transient "20220325") - (with-editor "20220318")) + '((emacs "25.1") + (compat "28.1.1.2") + (dash "20210826") + (git-commit "20221127") + (magit-section "20221127") + (transient "20220325") + (with-editor "20220318")) :homepage "https://magit.vc" :keywords '("git" "tools" "vc")) diff --git a/lisp/magit-section-pkg.el b/lisp/magit-section-pkg.el index 1a0511fb09..b0159047cf 100644 --- a/lisp/magit-section-pkg.el +++ b/lisp/magit-section-pkg.el @@ -1,7 +1,7 @@ -(define-package "magit-section" "3.3.0-git" +(define-package "magit-section" "3.3.0.50-git" "Sections for read-only buffers." - '((emacs "25.1") + '((emacs "25.1") (compat "28.1.1.2") - (dash "20210826")) + (dash "20210826")) :homepage "https://magit.vc" :keywords '("tools")) diff --git a/lisp/magit-section.el b/lisp/magit-section.el index 08fa3294cc..0c5570e82c 100644 --- a/lisp/magit-section.el +++ b/lisp/magit-section.el @@ -8,7 +8,7 @@ ;; Homepage: https://github.com/magit/magit ;; Keywords: tools -;; Package-Version: 3.3.0-git +;; Package-Version: 3.3.0.50-git ;; Package-Requires: ((emacs "25.1") (compat "28.1.1.2") (dash "2.19.1")) ;; SPDX-License-Identifier: GPL-3.0-or-later diff --git a/lisp/magit.el b/lisp/magit.el index b45c8663c2..b6b1d900af 100644 --- a/lisp/magit.el +++ b/lisp/magit.el @@ -17,7 +17,7 @@ ;; Homepage: https://github.com/magit/magit ;; Keywords: git tools vc -;; Package-Version: 3.3.0-git +;; Package-Version: 3.3.0.50-git ;; Package-Requires: ( ;; (emacs "25.1") ;; (compat "28.1.1.2")