diff --git a/CHANGELOG.md b/CHANGELOG.md index 34e1a51bf..fe51134b7 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.1.1](https://github.com/epwalsh/obsidian.nvim/releases/tag/v1.1.1) - 2022-08-22 + ### Fixed - Fixed bug when creating new notes. Sometimes this would fail if `~/` wasn't expanded. diff --git a/lua/obsidian/init.lua b/lua/obsidian/init.lua index dd635b95b..cb6583280 100644 --- a/lua/obsidian/init.lua +++ b/lua/obsidian/init.lua @@ -4,7 +4,7 @@ local echo = require "obsidian.echo" local obsidian = {} -obsidian.VERSION = "1.1.0" +obsidian.VERSION = "1.1.1" obsidian.completion = require "obsidian.completion" obsidian.note = require "obsidian.note" obsidian.util = require "obsidian.util"