Skip to content

Commit

Permalink
upgrade gem to 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
daattali committed Apr 27, 2020
1 parent 6ca349c commit 1d19d99
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ Thumbs.db
ehthumbs.db

Gemfile.lock

beautiful-jekyll-theme-*.gem
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion beautiful-jekyll-theme.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ["[email protected]"]

Expand Down
6 changes: 3 additions & 3 deletions docs/getstarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>`

Expand All @@ -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`

Expand Down

0 comments on commit 1d19d99

Please sign in to comment.