From 637db3e0df1b518b8dde3a9cf06e0e589343330e Mon Sep 17 00:00:00 2001 From: epwalsh Date: Wed, 12 Oct 2022 14:35:48 -0700 Subject: [PATCH] Bump version to v1.5.0 for release --- CHANGELOG.md | 2 ++ lua/obsidian/init.lua | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bfc4897c5..0c34199d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [v1.5.0](https://github.com/epwalsh/obsidian.nvim/releases/tag/v1.5.0) - 2022-10-12 + ### Changed - Improved `:ObsidianBacklinks` command to use its own buffer type instead of the location list. diff --git a/lua/obsidian/init.lua b/lua/obsidian/init.lua index 5c443cd0f..03827d541 100644 --- a/lua/obsidian/init.lua +++ b/lua/obsidian/init.lua @@ -5,7 +5,7 @@ local config = require "obsidian.config" local obsidian = {} -obsidian.VERSION = "1.4.0" +obsidian.VERSION = "1.5.0" obsidian.completion = require "obsidian.completion" obsidian.note = require "obsidian.note" obsidian.util = require "obsidian.util"