diff --git a/.gitignore b/.gitignore index 4d00d2c..e065359 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,5 @@ Thumbs.db ehthumbs.db Gemfile.lock + +beautiful-jekyll-theme-*.gem diff --git a/CHANGELOG.md b/CHANGELOG.md index ce55f95..14f7bc6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ This file lists all non-trivial changes to Beautiful Jekyll. I often make small changes to documentation, to the demo site, or to the general look-and-feel. These and other minor changes will not be listed here. -**2020-04-27** Upgrade gem to 2.0.1 to improve some documentation +**2020-04-27** Upgrade gem to 2.1.0 to improve some documentation and fix small bugs from remote_theme migration **2020-04-27** Add social network link: Telegram (#625) (thanks @mashed-potatoes) diff --git a/beautiful-jekyll-theme.gemspec b/beautiful-jekyll-theme.gemspec index 423cafd..aa99fd2 100644 --- a/beautiful-jekyll-theme.gemspec +++ b/beautiful-jekyll-theme.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |spec| spec.name = "beautiful-jekyll-theme" - spec.version = "2.0.1" + spec.version = "2.1.0" spec.authors = ["Dean Attali"] spec.email = ["daattali@gmail.com"] diff --git a/docs/getstarted.md b/docs/getstarted.md index 68cbb50..6388aff 100644 --- a/docs/getstarted.md +++ b/docs/getstarted.md @@ -55,7 +55,7 @@ There are three other ways of using beautiful-jekyll. These are advanced uses an - Method 1: Using `remote_theme` with a GitHub repository - Create a new GitHub repository or go to an existing repository - - Add `remote_theme: daattali/beautiful-jekyll@2.0.1` to your `_config.yml` file (make sure to remove any previous `theme` or `remote_theme` parameters that may have been there before) + - Add `remote_theme: daattali/beautiful-jekyll@2.1.0` to your `_config.yml` file (make sure to remove any previous `theme` or `remote_theme` parameters that may have been there before) - Go to _Settings_, scroll down to the _GitHub Pages_ section, and choose "master branch" as the source - Your website will be at `https://.github.io\` @@ -64,14 +64,14 @@ There are three other ways of using beautiful-jekyll. These are advanced uses an - Install Ruby and Jekyll (`sudo apt-get install ruby ruby-dev make gcc` and `sudo gem install jekyll bundler`) - Create a new jekyll site (e.g. `jekyll new mysite`) - Add `gem "jekyll-remote-theme"` to your Gemfile and then run `bundle install` to install the plugin - - Add `remote_theme: daattali/beautiful-jekyll@2.0.1` to your `_config.yml` file (make sure to remove any previous `theme` or `remote_theme` parameters that may have been there before) + - Add `remote_theme: daattali/beautiful-jekyll@2.1.0` to your `_config.yml` file (make sure to remove any previous `theme` or `remote_theme` parameters that may have been there before) - Add `- jekyll-remote-theme` to the plugins section of your `_config.yml` file to activate the plugin - Method 3: Using the Beautiful-Jekyll theme gem - Install Ruby and Jekyll (`sudo apt-get install ruby ruby-dev make gcc` and `sudo gem install jekyll bundler`) - Create a new jekyll site (e.g. `jekyll new mysite`) - - Add `gem "beautiful-jekyll-theme", "2.0.1"` to your Gemfile + - Add `gem "beautiful-jekyll-theme", "2.1.0"` to your Gemfile - Add `theme: beautiful-jekyll-theme` to your `_config.yml` - Run `bundle`