mirror of
https://github.com/org-roam/org-roam
synced 2025-08-03 12:27:23 -05:00
(release): v1.1.0-rc1 (#238)
This commit is contained in:
18
CHANGELOG.md
18
CHANGELOG.md
@ -1,6 +1,11 @@
|
|||||||
# Changelog
|
# 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
|
### Breaking Changes
|
||||||
* [#200][gh-200] Move Org-roam cache into a SQLite database.
|
* [#200][gh-200] Move Org-roam cache into a SQLite database.
|
||||||
@ -8,13 +13,17 @@
|
|||||||
|
|
||||||
### New Features
|
### New Features
|
||||||
* [#182][gh-182] Support file name aliases via `#+ROAM_ALIAS`.
|
* [#182][gh-182] Support file name aliases via `#+ROAM_ALIAS`.
|
||||||
|
|
||||||
### Features
|
|
||||||
* [#216][gh-216] Adds templating functionality by extending org-capture.
|
* [#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
|
### Bugfixes
|
||||||
* [#207][gh-207], [#221][gh-221] small bugfixes to Org-roam graph generation
|
* [#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)
|
## 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-207]: https://github.com/jethrokuan/org-roam/pull/207
|
||||||
[gh-216]: https://github.com/jethrokuan/org-roam/pull/216
|
[gh-216]: https://github.com/jethrokuan/org-roam/pull/216
|
||||||
[gh-221]: https://github.com/jethrokuan/org-roam/pull/221
|
[gh-221]: https://github.com/jethrokuan/org-roam/pull/221
|
||||||
|
[gh-230]: https://github.com/jethrokuan/org-roam/pull/230
|
||||||
|
|
||||||
# Local Variables:
|
# Local Variables:
|
||||||
# eval: (auto-fill-mode -1)
|
# eval: (auto-fill-mode -1)
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
;; Author: Jethro Kuan <jethrokuan95@gmail.com>
|
;; Author: Jethro Kuan <jethrokuan95@gmail.com>
|
||||||
;; URL: https://github.com/jethrokuan/org-roam
|
;; URL: https://github.com/jethrokuan/org-roam
|
||||||
;; Keywords: org-mode, roam, convenience
|
;; Keywords: org-mode, roam, convenience
|
||||||
;; Version: 0.1.2
|
;; Version: 1.0.0-rc1
|
||||||
;; Package-Requires: ((emacs "26.1") (org "9.0"))
|
;; Package-Requires: ((emacs "26.1") (org "9.0"))
|
||||||
|
|
||||||
;; This file is NOT part of GNU Emacs.
|
;; This file is NOT part of GNU Emacs.
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
;; Author: Jethro Kuan <jethrokuan95@gmail.com>
|
;; Author: Jethro Kuan <jethrokuan95@gmail.com>
|
||||||
;; URL: https://github.com/jethrokuan/org-roam
|
;; URL: https://github.com/jethrokuan/org-roam
|
||||||
;; Keywords: org-mode, roam, convenience
|
;; 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"))
|
;; 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.
|
;; This file is NOT part of GNU Emacs.
|
||||||
|
Reference in New Issue
Block a user