Browse Source

upgrade gem to 2.1.0

master
Dean Attali 4 years ago
parent
commit
1d19d99faf
4 changed files with 7 additions and 5 deletions
  1. +2
    -0
      .gitignore
  2. +1
    -1
      CHANGELOG.md
  3. +1
    -1
      beautiful-jekyll-theme.gemspec
  4. +3
    -3
      docs/getstarted.md

+ 2
- 0
.gitignore View File

@@ -9,3 +9,5 @@ Thumbs.db
ehthumbs.db ehthumbs.db


Gemfile.lock Gemfile.lock

beautiful-jekyll-theme-*.gem

+ 1
- 1
CHANGELOG.md 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. 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) **2020-04-27** Add social network link: Telegram (#625) (thanks @mashed-potatoes)




+ 1
- 1
beautiful-jekyll-theme.gemspec View File

@@ -2,7 +2,7 @@


Gem::Specification.new do |spec| Gem::Specification.new do |spec|
spec.name = "beautiful-jekyll-theme" spec.name = "beautiful-jekyll-theme"
spec.version = "2.0.1"
spec.version = "2.1.0"
spec.authors = ["Dean Attali"] spec.authors = ["Dean Attali"]
spec.email = ["daattali@gmail.com"] spec.email = ["daattali@gmail.com"]




+ 3
- 3
docs/getstarted.md 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 - Method 1: Using `remote_theme` with a GitHub repository


- Create a new GitHub repository or go to an existing 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 - 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>` - 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`) - 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`) - 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 `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 - 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 - 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`) - 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`) - 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` - Add `theme: beautiful-jekyll-theme` to your `_config.yml`
- Run `bundle` - Run `bundle`




Loading…
Cancel
Save