Skip to content

Commit

Permalink
Release version 2.90.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsius committed Nov 8, 2018
1 parent 23402e0 commit 36deb2f
Show file tree
Hide file tree
Showing 6 changed files with 66 additions and 21 deletions.
47 changes: 46 additions & 1 deletion Documentation/RelNotes/2.90.0.org
@@ -1,4 +1,26 @@
* Magit v2.90.0 Release Notes (unreleased)
* It's Magit! A Git Porcelain inside Emacs

Magit is a text-based Git user interface that puts an unmatched focus
on streamlining workflows. Commands are invoked using short mnemonic
key sequences that take the cursor’s position in the highly actionable
interface into account to provide context-sensitive behavior.

With Magit you can do nearly everything that you can do when using Git
on the command-line, but at greater speed and while taking advantage
of advanced features that previously seemed too daunting to use on a
daily basis. Many users will find that by using Magit they can become
more effective Git user.

For more information about Magit, see https://magit.vc.

* Magit v2.90.0 Release Notes

Released 8th November 2018 by Jonas Bernoulli.

I am pleased to announce the release of Magit version 2.90.0,
representing 395 commits by 18 contributors over five months.

Also see https://emacsair.me/2018/11/08/magit-2.90.

** Breaking changes

Expand Down Expand Up @@ -391,3 +413,26 @@
- When a local branch is being renamed, then ~magit-branch-rename~ used
to also rename the (remote) push-target, which is unsafe in some
cases. Now it always asks the user before doing so. 14c7b1381

* Authors

333 Jonas Bernoulli
31 Kyle Meyer
13 Noam Postavsky
2 Phil Sainty
1 Alex Branham
1 Aria Edmonds
1 Arialdo Martini
1 Basil L. Contovounesios
1 Benjamin Motz
1 Bob Uhl
1 Eric Prud'hommeaux
1 Felix Yan
1 John Morris
1 Jordan Galby
1 Louis Roché
1 Mak Kolybabi
1 Miciah Masters
1 N. Troy de Freitas
1 Pierre Neidhardt
1 Raimon Grau
4 changes: 2 additions & 2 deletions Documentation/magit.org
Expand Up @@ -8,7 +8,7 @@
#+TEXINFO_DIR_CATEGORY: Emacs
#+TEXINFO_DIR_TITLE: Magit: (magit).
#+TEXINFO_DIR_DESC: Using Git from Emacs with Magit.
#+SUBTITLE: for version 2.13.0 (2.13.0-390-gfee830913+1)
#+SUBTITLE: for version 2.90.0
#+BIND: ox-texinfo+-before-export-hook ox-texinfo+-update-version-strings

#+TEXINFO_DEFFN: t
Expand All @@ -23,7 +23,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 2.13.0 (2.13.0-390-gfee830913+1).
This manual is for Magit version 2.90.0.

#+BEGIN_QUOTE
Copyright (C) 2015-2018 Jonas Bernoulli <jonas@bernoul.li>
Expand Down
4 changes: 2 additions & 2 deletions Documentation/magit.texi
Expand Up @@ -31,7 +31,7 @@ General Public License for more details.
@finalout
@titlepage
@title Magit User Manual
@subtitle for version 2.13.0 (2.13.0-390-gfee830913+1)
@subtitle for version 2.90.0
@author Jonas Bernoulli
@page
@vskip 0pt plus 1filll
Expand All @@ -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 2.13.0 (2.13.0-390-gfee830913+1).
This manual is for Magit version 2.90.0.

@quotation
Copyright (C) 2015-2018 Jonas Bernoulli <jonas@@bernoul.li>
Expand Down
16 changes: 8 additions & 8 deletions default.mk
Expand Up @@ -100,17 +100,17 @@ VERSION ?= $(shell test -e $(TOP).git && git describe --tags --abbrev=0)

ASYNC_VERSION = 1.9.3
DASH_VERSION = 2.14.1
GHUB_VERSION = 2.0.1
GHUB_VERSION = 3.0.0
GIT_COMMIT_VERSION = 2.13.0
MAGIT_POPUP_VERSION = 2.12.3
WITH_EDITOR_VERSION = 2.7.3
MAGIT_POPUP_VERSION = 2.12.4
WITH_EDITOR_VERSION = 2.8.0

ASYNC_MELPA_SNAPSHOT = 20180527
DASH_MELPA_SNAPSHOT = 20180413
GHUB_MELPA_SNAPSHOT = 20180417
GIT_COMMIT_MELPA_SNAPSHOT = 20180602
MAGIT_POPUP_MELPA_SNAPSHOT = 20180509
WITH_EDITOR_MELPA_SNAPSHOT = 20181026
DASH_MELPA_SNAPSHOT = 20180910
GHUB_MELPA_SNAPSHOT = 20181107
GIT_COMMIT_MELPA_SNAPSHOT = 20181104
MAGIT_POPUP_MELPA_SNAPSHOT = 20181003
WITH_EDITOR_MELPA_SNAPSHOT = 20181103

EMACS_VERSION = 25.1

Expand Down
2 changes: 1 addition & 1 deletion lisp/git-commit.el
Expand Up @@ -11,7 +11,7 @@
;; Marius Vollmer <marius.vollmer@gmail.com>
;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>

;; Package-Requires: ((emacs "25.1") (dash "20180413") (with-editor "20180414"))
;; Package-Requires: ((emacs "25.1") (dash "2.14.1") (with-editor "2.8.0"))
;; Keywords: git tools vc
;; Homepage: https://github.com/magit/magit

Expand Down
14 changes: 7 additions & 7 deletions lisp/magit-pkg.el
@@ -1,9 +1,9 @@
(define-package "magit" "2.13.1"
(define-package "magit" "2.90.0"
"A Git porcelain inside Emacs."
'((emacs "25.1")
(async "20180527")
(dash "20180413")
(ghub "20180417")
(git-commit "20180602")
(magit-popup "20180509")
(with-editor "20180414")))
(async "1.9.3")
(dash "2.14.1")
(ghub "3.0.0")
(git-commit "2.13.0")
(magit-popup "2.12.4")
(with-editor "2.8.0")))

0 comments on commit 36deb2f

Please sign in to comment.