Skip to content

Commit 578e83b

Browse files
committed
set 3.0.0 in code
1 parent 4f5fa8a commit 578e83b

File tree

4 files changed

+16
-15
lines changed

4 files changed

+16
-15
lines changed

doc/org-gtd.org

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#+TEXINFO_DIR_TITLE: Org GTD: (org-gtd)
1010
#+TEXINFO_DIR_DESC: An opinionated GTD flow implemented in org-mode
1111
#+TEXINFO_FILENAME: ../org-gtd.info
12-
#+SUBTITLE: for version 2.2
12+
#+SUBTITLE: for version 3.0
1313
#+TEXINFO_DEFFN: t
1414
#+OPTIONS: H:3 num:3 toc:2
1515
#+PROPERTY: header-args :eval never

org-gtd-pkg.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(define-package "org-gtd" "3.0.0beta"
1+
(define-package "org-gtd" "3.0.0"
22
"An implementation of GTD."
33
'((emacs "27.2")
44
(org-edna "1.1.2")

org-gtd.el

+13-12
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
;; Author: Aldric Giacomoni <[email protected]>
66
;; Homepage: https://github.com/Trevoke/org-gtd.el
77
;; Package-Requires: ((emacs "27.2") (org-edna "1.1.2") (f "0.20.0") (org "9.6") (org-agenda-property "1.3.1") (transient "0.3.7"))
8-
;; Package-Version: 3.0.0beta
8+
;; Package-Version: 3.0.0
99

1010
;; This file is not part of GNU Emacs.
1111

@@ -38,7 +38,7 @@
3838
;; Upgrade information is also available therein.
3939
;;
4040
;;; Code:
41-
(defconst org-gtd-version "3.0.0beta")
41+
(defconst org-gtd-version "3.0.0")
4242

4343
(require 'subr-x)
4444
(require 'cl-lib)
@@ -78,18 +78,18 @@ your version to the one installed. Use a version string. For instance:
7878
If org-gtd is 2.0.0, use \"2.0.0\".
7979
If org-gtd is 2.3.5, use \"2.3.5\".")
8080

81-
(if (version< org-gtd-update-ack "3.0.0beta")
81+
(if (version< org-gtd-update-ack "3.0.0")
8282
(lwarn 'org-gtd :warning "
8383
84-
|--------------------------|
85-
| WARNING: BETA RELEASE |
86-
|--------------------------|
84+
|-------------------------|
85+
| WARNING: MAJOR VERSION |
86+
|-------------------------|
87+
88+
See the changelog for a full set of changes.
8789
88-
Thank you for testing the beta release of org-gtd 3.0.0 .
89-
The API is stable unless big breakages are discovered for some reason.
90+
See the documentation for complete upgrade information:
9091
91-
For a summary/dirty changelog, see a file called `changes-for-3.0.org' in the
92-
repository: `https://github.com/trevoke/org-gtd.el'.
92+
=> `C-h i m org gtd RET'
9393
9494
Important notices involve:
9595
- run `org-gtd-upgrade-v2-to-v3'
@@ -101,12 +101,13 @@ Important notices involve:
101101
- `org-gtd-choose' is now `org-gtd-organize'
102102
- `org-gtd-process-item-hooks' is now `org-gtd-organize-hooks'
103103
104-
So do review this, and join the discord in the readme to discuss the changes!
104+
So do review this, and join the discord in the readme if you want to meet
105+
more users!
105106
106107
To make this warning go away, add the following setting to your config file
107108
(BEFORE ORG-GTD LOADS)
108109
109-
(setq org-gtd-update-ack \"3.0.0beta\")
110+
(setq org-gtd-update-ack \"3.0.0\"
110111
111112
"))
112113

test/helpers/setup.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(setq org-gtd-update-ack "3.0.0beta")
1+
(setq org-gtd-update-ack "3.0.0")
22

33
(load "test/helpers/clarifying.el")
44
(load "test/helpers/project-fixtures.el")

0 commit comments

Comments
 (0)