upgrade gem to 2.1.0

This commit is contained in:
Dean Attali 2020-04-27 16:09:12 +00:00
parent 6ca349ced1
commit 1d19d99faf
4 changed files with 7 additions and 5 deletions

2
.gitignore vendored
View File

@ -9,3 +9,5 @@ Thumbs.db
ehthumbs.db
Gemfile.lock
beautiful-jekyll-theme-*.gem

View File

@ -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)

View File

@ -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"]

View File

@ -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://<yourusername>.github.io\<projectname>`
@ -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`