Skip to content

Commit

Permalink
Release version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsius committed Aug 8, 2024
1 parent efbebd4 commit 0b5571b
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 18 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- mode: org -*-
* v0.4.0 UNRELEASED
* v0.4.0 2024-08-08

This is the biggest Forge release so far, consisting of more than 650 commits
created over the course of more than two years. I am not able to load all that
Expand Down
4 changes: 2 additions & 2 deletions docs/forge.org
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
#+texinfo_dir_category: Emacs
#+texinfo_dir_title: Forge: (forge).
#+texinfo_dir_desc: Access Git Forges from Magit
#+subtitle: for version 0.3.2.50-git
#+subtitle: for version 0.4.0

#+setupfile: .orgconfig

Forge allows you to work with Git forges, currently Github and Gitlab,
from the comfort of Magit and Emacs.

#+texinfo: @noindent
This manual is for Forge version 0.3.2.50-git.
This manual is for Forge version 0.4.0.

#+texinfo: @insertcopying
:END:
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.3.2.50-git
@subtitle for version 0.4.0
@author Jonas Bernoulli
@page
@vskip 0pt plus 1filll
Expand All @@ -48,7 +48,7 @@ Forge allows you to work with Git forges, currently Github and Gitlab,
from the comfort of Magit and Emacs.

@noindent
This manual is for Forge version 0.3.2.50-git.
This manual is for Forge version 0.4.0.

@insertcopying
@end ifnottex
Expand Down
26 changes: 13 additions & 13 deletions forge-pkg.el
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
(define-package "forge" "0.3.2.50-git"
(define-package "forge" "0.4.0"
"Access Git forges from Magit."
'((emacs "27.1")
(compat "30.0.0.0")
(closql "20240701")
(dash "2.19.1")
(emacsql "20240124")
(ghub "20240507")
(let-alist "1.0.6")
(magit "20240701")
(markdown-mode "2.6")
(seq "2.24")
(transient "20240729")
(yaml "0.5.5"))
'((emacs "27.1")
(compat "30.0.0.0")
(closql "2.0.0")
(dash "2.19.1")
(emacsql "4.0.0")
(ghub "4.0.0")
(let-alist "1.0.6")
(magit "4.0.0")
(markdown-mode "2.6")
(seq "2.24")
(transient "0.7.4")
(yaml "0.5.5"))
:homepage "https://github.com/magit/forge"
:keywords '("git" "tools" "vc"))
15 changes: 15 additions & 0 deletions lisp/forge.el
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@
;; Homepage: https://github.com/magit/forge
;; Keywords: git tools vc

;; Package-Version: 0.4.0
;; Package-Requires: (
;; (emacs "27.1")
;; (compat "30.0.0.0")
;; (closql "2.0.0")
;; (dash "2.19.1")
;; (emacsql "4.0.0")
;; (ghub "4.0.0")
;; (let-alist "1.0.6")
;; (magit "4.0.0")
;; (markdown-mode "2.6")
;; (seq "2.24")
;; (transient "0.7.4")
;; (yaml "0.5.5"))

;; SPDX-License-Identifier: GPL-3.0-or-later

;; This file is free software: you can redistribute it and/or modify
Expand Down

0 comments on commit 0b5571b

Please sign in to comment.