diff --git a/CHANGELOG.md b/CHANGELOG.md index 60458ed..0f2a8b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1 +1,17 @@ -Release notes for this project are kept here: https://github.com/samsonjs/wordexp/releases +# Changelo + +[Release notes][gh] for this project are [also available on GitHub][gh]. + +[gh]: https://github.com/samsonjs/wordexp/releases + +# 0.1.1 +# 2022-01-16 + +- Add native extension and command line executable to gemspec + +# 0.1.0 +# 2022-01-16 + +First release. Implements the most basic API without any options. + +Command line executable and native extension are broken. diff --git a/Gemfile.lock b/Gemfile.lock index dac2bf8..1327527 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - wordexp (0.1.0) + wordexp (0.1.1) GEM remote: https://rubygems.org/ diff --git a/lib/wordexp/version.rb b/lib/wordexp/version.rb index 187fcc0..17a56dc 100644 --- a/lib/wordexp/version.rb +++ b/lib/wordexp/version.rb @@ -1,3 +1,3 @@ module Wordexp - VERSION = '0.1.0'.freeze + VERSION = '0.1.1'.freeze end