diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d130e6..7c22bcc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog -## 1.0.0 +## 1.0.0-rc1 (06-03-2020) + +This is a pre-release before the push to MELPA. It contains large +internal changes, with little user-facing changes. Most notably, the +backing storage has been changed to a SQLite database, and a +templating system using `org-capture` is introduced. ### Breaking Changes * [#200][gh-200] Move Org-roam cache into a SQLite database. @@ -8,13 +13,17 @@ ### New Features * [#182][gh-182] Support file name aliases via `#+ROAM_ALIAS`. - -### Features * [#216][gh-216] Adds templating functionality by extending org-capture. - +* [#232][gh-232] Adds a prefix key to `org-roam-show-graph`, to generate graph without opening it. +* [#233][gh-233] Adds `org-roam-graph-exclude-matcher`, which allows exclusion of nodes from graph. ### Bugfixes * [#207][gh-207], [#221][gh-221] small bugfixes to Org-roam graph generation +* [#230][gh-230] remove nonspacing marks from filenames, to prevent cross-platform errors + +### New Contributors +* [@acowley][https://github.com/acowley] +* [@teesloane][https://github.com/teesloane] ## 0.1.2 (2020-02-21) @@ -109,6 +118,7 @@ Mostly a documentation/cleanup release. [gh-207]: https://github.com/jethrokuan/org-roam/pull/207 [gh-216]: https://github.com/jethrokuan/org-roam/pull/216 [gh-221]: https://github.com/jethrokuan/org-roam/pull/221 +[gh-230]: https://github.com/jethrokuan/org-roam/pull/230 # Local Variables: # eval: (auto-fill-mode -1) diff --git a/org-roam-protocol.el b/org-roam-protocol.el index 059cab6..d7bd6e5 100644 --- a/org-roam-protocol.el +++ b/org-roam-protocol.el @@ -4,7 +4,7 @@ ;; Author: Jethro Kuan ;; URL: https://github.com/jethrokuan/org-roam ;; Keywords: org-mode, roam, convenience -;; Version: 0.1.2 +;; Version: 1.0.0-rc1 ;; Package-Requires: ((emacs "26.1") (org "9.0")) ;; This file is NOT part of GNU Emacs. diff --git a/org-roam.el b/org-roam.el index 3cee30b..7206b72 100644 --- a/org-roam.el +++ b/org-roam.el @@ -5,7 +5,7 @@ ;; Author: Jethro Kuan ;; URL: https://github.com/jethrokuan/org-roam ;; Keywords: org-mode, roam, convenience -;; Version: 0.1.2 +;; Version: 1.0.0-rc1 ;; Package-Requires: ((emacs "26.1") (dash "2.13") (f "0.17.2") (s "1.12.0") (org "9.0") (emacsql "3.0.0") (emacsql-sqlite "1.0.0")) ;; This file is NOT part of GNU Emacs.