From 89e9121f26cf03bb7820d257cd9d9106916cd1e9 Mon Sep 17 00:00:00 2001 From: Jethro Kuan Date: Mon, 27 Jul 2020 01:03:35 +0800 Subject: [PATCH] (release): Org-roam v1.2.1 (#975) --- CHANGELOG.md | 9 ++++++++- doc/org-roam.org | 4 ++-- doc/org-roam.texi | 4 ++-- org-roam-buffer.el | 2 +- org-roam-capture.el | 2 +- org-roam-compat.el | 2 +- org-roam-completion.el | 2 +- org-roam-dailies.el | 2 +- org-roam-db.el | 2 +- org-roam-dev.el | 2 +- org-roam-doctor.el | 2 +- org-roam-graph.el | 2 +- org-roam-macs.el | 2 +- org-roam-protocol.el | 2 +- org-roam.el | 2 +- 15 files changed, 24 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bdff809..84f63c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Changelog -## 1.2.1 (TBD) +## 1.2.1 (27-07-2020) + +This release consisted of a big deal of refactoring and bug fixes. Notably, we fixed several catastrophic failures on db builds with bad setups (#854), and modularized tag and title extractions. + +We also added some new features that had been a long time coming: + +1. We made the backlinks more outline-friendly by also showing the outline hierarchy for a backlink (#863) +2. We now support nested captures, which is crucial for `org-roam-protocol` (#966) ### Breaking Changes - [#908](https://github.com/org-roam/org-roam/pull/908) Normalized titles in database. May break external packages that rely on unnormalized titles. diff --git a/doc/org-roam.org b/doc/org-roam.org index d885474..e493a46 100644 --- a/doc/org-roam.org +++ b/doc/org-roam.org @@ -8,13 +8,13 @@ #+texinfo_dir_category: Emacs #+texinfo_dir_title: Org-roam: (org-roam). #+texinfo_dir_desc: Rudimentary Roam Replica for Emacs. -#+subtitle: for version 1.2.0 +#+subtitle: for version 1.2.1 #+options: H:4 num:3 toc:2 creator:t #+property: header-args :eval never #+texinfo: @noindent -This manual is for Org-roam version 1.2.0. +This manual is for Org-roam version 1.2.1. #+BEGIN_QUOTE Copyright (C) 2020-2020 Jethro Kuan diff --git a/doc/org-roam.texi b/doc/org-roam.texi index f284cb4..7bc5442 100644 --- a/doc/org-roam.texi +++ b/doc/org-roam.texi @@ -31,7 +31,7 @@ General Public License for more details. @finalout @titlepage @title Org-roam User Manual -@subtitle for version 1.2.0 +@subtitle for version 1.2.1 @author Jethro Kuan @page @vskip 0pt plus 1filll @@ -46,7 +46,7 @@ General Public License for more details. @noindent -This manual is for Org-roam version 1.2.0. +This manual is for Org-roam version 1.2.1. @quotation Copyright (C) 2020-2020 Jethro Kuan diff --git a/org-roam-buffer.el b/org-roam-buffer.el index 8742665..ea3986e 100644 --- a/org-roam-buffer.el +++ b/org-roam-buffer.el @@ -5,7 +5,7 @@ ;; Author: Jethro Kuan ;; URL: https://github.com/org-roam/org-roam ;; Keywords: org-mode, roam, convenience -;; Version: 1.2.0 +;; Version: 1.2.1 ;; Package-Requires: ((emacs "26.1") (dash "2.13") (f "0.17.2") (s "1.12.0") (org "9.3") (emacsql "3.0.0") (emacsql-sqlite3 "1.0.0")) ;; This file is NOT part of GNU Emacs. diff --git a/org-roam-capture.el b/org-roam-capture.el index 4b778d8..5e1ed13 100644 --- a/org-roam-capture.el +++ b/org-roam-capture.el @@ -5,7 +5,7 @@ ;; Author: Jethro Kuan ;; URL: https://github.com/org-roam/org-roam ;; Keywords: org-mode, roam, convenience -;; Version: 1.2.0 +;; Version: 1.2.1 ;; Package-Requires: ((emacs "26.1") (dash "2.13") (f "0.17.2") (s "1.12.0") (org "9.3") (emacsql "3.0.0") (emacsql-sqlite3 "1.0.0")) ;; This file is NOT part of GNU Emacs. diff --git a/org-roam-compat.el b/org-roam-compat.el index 7c4e0fb..f12adb6 100644 --- a/org-roam-compat.el +++ b/org-roam-compat.el @@ -5,7 +5,7 @@ ;; Author: Jethro Kuan ;; URL: https://github.com/org-roam/org-roam ;; Keywords: org-mode, roam, convenience -;; Version: 1.2.0 +;; Version: 1.2.1 ;; Package-Requires: ((emacs "26.1") (dash "2.13") (f "0.17.2") (s "1.12.0") (org "9.3") (emacsql "3.0.0") (emacsql-sqlite3 "1.0.0")) ;; This file is NOT part of GNU Emacs. diff --git a/org-roam-completion.el b/org-roam-completion.el index 45dedb1..8e3e683 100644 --- a/org-roam-completion.el +++ b/org-roam-completion.el @@ -5,7 +5,7 @@ ;; Author: Jethro Kuan ;; URL: https://github.com/org-roam/org-roam ;; Keywords: org-mode, roam, convenience -;; Version: 1.2.0 +;; Version: 1.2.1 ;; Package-Requires: ((emacs "26.1") (dash "2.13") (f "0.17.2") (s "1.12.0") (org "9.3") (emacsql "3.0.0") (emacsql-sqlite3 "1.0.0")) ;; This file is NOT part of GNU Emacs. diff --git a/org-roam-dailies.el b/org-roam-dailies.el index 0ac341f..3a83f5d 100644 --- a/org-roam-dailies.el +++ b/org-roam-dailies.el @@ -5,7 +5,7 @@ ;; Author: Jethro Kuan ;; URL: https://github.com/org-roam/org-roam ;; Keywords: org-mode, roam, convenience -;; Version: 1.2.0 +;; Version: 1.2.1 ;; Package-Requires: ((emacs "26.1") (dash "2.13") (f "0.17.2") (s "1.12.0") (org "9.3") (emacsql "3.0.0") (emacsql-sqlite3 "1.0.0")) ;; This file is NOT part of GNU Emacs. diff --git a/org-roam-db.el b/org-roam-db.el index a0e2299..90d88e6 100644 --- a/org-roam-db.el +++ b/org-roam-db.el @@ -5,7 +5,7 @@ ;; Author: Jethro Kuan ;; URL: https://github.com/org-roam/org-roam ;; Keywords: org-mode, roam, convenience -;; Version: 1.2.0 +;; Version: 1.2.1 ;; Package-Requires: ((emacs "26.1") (dash "2.13") (f "0.17.2") (s "1.12.0") (org "9.3") (emacsql "3.0.0") (emacsql-sqlite3 "1.0.0")) ;; This file is NOT part of GNU Emacs. diff --git a/org-roam-dev.el b/org-roam-dev.el index 469d9c5..25b758d 100644 --- a/org-roam-dev.el +++ b/org-roam-dev.el @@ -5,7 +5,7 @@ ;; Author: Jethro Kuan ;; URL: https://github.com/org-roam/org-roam ;; Keywords: org-mode, roam, convenience -;; Version: 1.2.0 +;; Version: 1.2.1 ;; Package-Requires: ((emacs "26.1") (dash "2.13") (f "0.17.2") (s "1.12.0") (org "9.3") (emacsql "3.0.0") (emacsql-sqlite3 "1.0.0")) ;; This file is NOT part of GNU Emacs. diff --git a/org-roam-doctor.el b/org-roam-doctor.el index 99ffa95..143c48f 100644 --- a/org-roam-doctor.el +++ b/org-roam-doctor.el @@ -5,7 +5,7 @@ ;; Author: Jethro Kuan ;; URL: https://github.com/jethrokuan/org-roam ;; Keywords: org-mode, roam, convenience -;; Version: 1.2.0 +;; Version: 1.2.1 ;; Package-Requires: ((emacs "26.1") (dash "2.13") (f "0.17.2") (s "1.12.0") (org "9.3") (emacsql "3.0.0") (emacsql-sqlite3 "1.0.0")) ;; This file is NOT part of GNU Emacs. diff --git a/org-roam-graph.el b/org-roam-graph.el index 1da29f3..b844cde 100644 --- a/org-roam-graph.el +++ b/org-roam-graph.el @@ -5,7 +5,7 @@ ;; Author: Jethro Kuan ;; URL: https://github.com/org-roam/org-roam ;; Keywords: org-mode, roam, convenience -;; Version: 1.2.0 +;; Version: 1.2.1 ;; Package-Requires: ((emacs "26.1") (dash "2.13") (f "0.17.2") (s "1.12.0") (org "9.3") (emacsql "3.0.0") (emacsql-sqlite3 "1.0.0")) ;; This file is NOT part of GNU Emacs. diff --git a/org-roam-macs.el b/org-roam-macs.el index 9604ef2..5feb83c 100644 --- a/org-roam-macs.el +++ b/org-roam-macs.el @@ -5,7 +5,7 @@ ;; Author: Jethro Kuan ;; URL: https://github.com/org-roam/org-roam ;; Keywords: org-mode, roam, convenience -;; Version: 1.2.0 +;; Version: 1.2.1 ;; Package-Requires: ((emacs "26.1") (dash "2.13") (f "0.17.2") (s "1.12.0") (org "9.3") (emacsql "3.0.0") (emacsql-sqlite3 "1.0.0")) ;; This file is NOT part of GNU Emacs. diff --git a/org-roam-protocol.el b/org-roam-protocol.el index 48ddf3c..d2f917b 100644 --- a/org-roam-protocol.el +++ b/org-roam-protocol.el @@ -4,7 +4,7 @@ ;; Author: Jethro Kuan ;; URL: https://github.com/org-roam/org-roam ;; Keywords: org-mode, roam, convenience -;; Version: 1.2.0 +;; Version: 1.2.1 ;; Package-Requires: ((emacs "26.1") (org "9.3")) ;; This file is NOT part of GNU Emacs. diff --git a/org-roam.el b/org-roam.el index f8532c3..1bfa4fe 100644 --- a/org-roam.el +++ b/org-roam.el @@ -5,7 +5,7 @@ ;; Author: Jethro Kuan ;; URL: https://github.com/org-roam/org-roam ;; Keywords: org-mode, roam, convenience -;; Version: 1.2.0 +;; Version: 1.2.1 ;; Package-Requires: ((emacs "26.1") (dash "2.13") (f "0.17.2") (s "1.12.0") (org "9.3") (emacsql "3.0.0") (emacsql-sqlite3 "1.0.0")) ;; This file is NOT part of GNU Emacs.