diff --git a/CHANGELOG.md b/CHANGELOG.md index bbf1b72..5ec4755 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,6 @@ # Changelog -## 0.1.2 (TBD) - -### Changes - -* [#108][gh-108] Locally overwrite the link following behaviour in the org-roam-buffer to open files in the same window `org-roam` was called from +## 0.1.2 (2020-02-21) ### Breaking Changes * [#143][gh-143] `org-roam-mode` is now a global mode. The installation instructions have changed accordingly. @@ -19,6 +15,10 @@ * [#110][gh-110] Add prefix to `org-roam-insert`, for inserting titles down-cased * [#99][gh-99] Add keybinding so that `` or `mouse-1` in the backlinks buffer visits the source file of the backlink at point +### Changes + +* [#108][gh-108] Locally overwrite the link following behaviour in the org-roam-buffer to open files in the same window `org-roam` was called from + ### Bugfixes * [#86][gh-86] Fix `org-roam--parse-content` incorrect `:to` computation for nested files * [#98][gh-98] Fix `org-roam--find-file` picking up temporary files @@ -28,9 +28,11 @@ * [#122][gh-122], [#128][gh-128] Improve performance of post-command-hook * [#92][gh-92], [#105][gh-105] Add tests for core functionality -### Contributors -* [@chip2n](https://github.com/chip2n/) -* [@l3kn](https://github.com/l3kn/) +### New Contributors +* [@frigge](https://github.com/frigge) +* [@juergenhoetzel](https://github.com/juergenhoetzel) +* [@chip2n](https://github.com/chip2n) +* [@l3kn](https://github.com/l3kn) * [@jdormit](https://github.com/jdormit) * [@herbertjones](https://github.com/herbertjones) * [@CeleritasCelery](https://github.com/CeleritasCelery) @@ -84,7 +86,7 @@ Mostly a documentation/cleanup release. [gh-138]: https://github.com/jethrokuan/org-roam/pull/138 [gh-141]: https://github.com/jethrokuan/org-roam/pull/141 [gh-142]: https://github.com/jethrokuan/org-roam/pull/142 -[gh-142]: https://github.com/jethrokuan/org-roam/pull/143 +[gh-143]: https://github.com/jethrokuan/org-roam/pull/143 # Local Variables: # eval: (auto-fill-mode -1) diff --git a/org-roam-utils.el b/org-roam-utils.el index d093858..8c944bd 100644 --- a/org-roam-utils.el +++ b/org-roam-utils.el @@ -5,7 +5,7 @@ ;; Author: Jethro Kuan ;; URL: https://github.com/jethrokuan/org-roam ;; Keywords: org-mode, roam, convenience -;; Version: 0.1.0 +;; Version: 0.1.2 ;; Package-Requires: ((emacs "26.1")) ;; This file is NOT part of GNU Emacs. diff --git a/org-roam.el b/org-roam.el index 14e3f8d..17c4e7a 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.0 +;; Version: 0.1.2 ;; Package-Requires: ((emacs "26.1") (dash "2.13") (f "0.17.2") (s "1.12.0") (async "1.9.4")) ;; This file is NOT part of GNU Emacs.