Skip to content

Commit

Permalink
Release version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsius committed May 25, 2021
1 parent 2887b61 commit 551e515
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 52 deletions.
40 changes: 5 additions & 35 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,42 +1,12 @@
# -*- mode: org -*-
* v0.2.0 2021-05-25

* v0.2.0 UNRELEASED
- Second release.

- For the time being ~forge-pull~ does not pull notifications anymore.
Many reported bugs are related to notifications and while many of
those have already been fixed, pulling notifications is still more
likely to contain bugs than other more essential functionality
because we have to work around limitations in the Github API to do
so.
- Features and bugfixes.

To fetch notifications use the command ~forge-pull-notifications~ or
customize the option ~forge-pull-notifications~. 47671ca

- Added support for Gitlab subgroups. #11

- Added support for issue and pull-request templates. #25

- Added the command ~forge-copy-url-at-point-as-kill~. #85

- When visiting an unmerged pull-request in a separate buffer, then
the commits are now listed alongside the posts. caeb8fb

- Added ~turn-on-flyspell~ to ~forge-post-mode-hook~. bd07eec

- Fixed several bugs. Some of these were silly mistakes in Forge
itself, while others were due to API bugs that we weren't aware
of and therefore did not work around yet.

#10 github: Remove duplicates from response data
#20 forge--pull-notifications: Paginate GraphQL request
#33 Use correct remote when submitting a cross-repo pull-request
#23 forge--sanitize-string: Deal with Gitlab inconsistency
#32 forge--branch-pullreq: Respect forge.remote variable
1be5097 forge-insert-pullreq: If it cannot be expanded, don't claim it can
86c01a9 forge-list-recent-topics: Intern using correct class
9ec2964 Make sure the `updated' slot is always bound
#19 Ignore 404 errors from repositories associated with a pull request
#18 fix the type declaration for forge-alist, so that it can be customized
- I haven't been keeping this list updated and don't feel like going
through hundreds of commits now. Sorry, maybe next time.

* v0.1.0 2018-12-19

Expand Down
4 changes: 2 additions & 2 deletions docs/forge.org
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#+TEXINFO_DIR_CATEGORY: Emacs
#+TEXINFO_DIR_TITLE: Forge: (forge).
#+TEXINFO_DIR_DESC: Access Git Forges from Magit
#+SUBTITLE: for version 0.1.0 (v0.1.0-376-gab3be5a7+1)
#+SUBTITLE: for version 0.2.0

#+TEXINFO_DEFFN: t
#+OPTIONS: H:4 num:4 toc:2
Expand All @@ -20,7 +20,7 @@ Forge allows you to work with Git forges, such as Github and Gitlab,
from the comfort of Magit and the rest of Emacs.

#+TEXINFO: @noindent
This manual is for Forge version 0.1.0 (v0.1.0-376-gab3be5a7+1).
This manual is for Forge version 0.2.0.

#+BEGIN_QUOTE
Copyright (C) 2018-2021 Jonas Bernoulli <[email protected]>
Expand Down
4 changes: 2 additions & 2 deletions docs/forge.texi
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ General Public License for more details.
@finalout
@titlepage
@title Forge User and Developer Manual
@subtitle for version 0.1.0 (v0.1.0-376-gab3be5a7+1)
@subtitle for version 0.2.0
@author Jonas Bernoulli
@page
@vskip 0pt plus 1filll
Expand All @@ -48,7 +48,7 @@ Forge allows you to work with Git forges, such as Github and Gitlab,
from the comfort of Magit and the rest of Emacs.

@noindent
This manual is for Forge version 0.1.0 (v0.1.0-376-gab3be5a7+1).
This manual is for Forge version 0.2.0.

@quotation
Copyright (C) 2018-2021 Jonas Bernoulli <jonas@@bernoul.li>
Expand Down
22 changes: 9 additions & 13 deletions forge-pkg.el
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
(define-package "forge" "0"
"Access Git forges from Magit."
'((emacs "25.1")
(closql "1.0.0")
(dash "2.14.1")
(closql "1.0.4")
(dash "2.18.1")
(emacsql-sqlite "3.0.0")
;; This comes with important bug fixes and a workaround for
;; an Emacs bug.
(ghub "20190319")
(let-alist "1.0.5")
;; Forge currently isn't compatible with any releases Magit
;; version. When removing this kludge, then do not forget to
;; also remove the related kludge from Forge's Melpa recipe.
(magit "20190408")
(markdown-mode "2.3")
(transient "0.1.0"))
:url "https://github.com/magit/forge")
(ghub "3.5.2")
(let-alist "1.0.6")
(magit "3.0.0")
(markdown-mode "2.4")
(transient "0.3.3"))
:homepage "https://github.com/magit/forge"
:keywords '("git" "tools" "vc"))

0 comments on commit 551e515

Please sign in to comment.