Jekyll: docs: Help update Jekyll

Created on 2 Mar 2019  路  3Comments  路  Source: jekyll/jekyll

Hi. There is a repository with a blog. So, recently I started to swear at what needs to be updated Jekyll.
How to do it?
http://prntscr.com/ms9ret

documentation frozen-due-to-age

Most helpful comment

@muromtsev Most of the times, you just need to run bundle update.

See https://bundler.io/v2.0/man/bundle-update.1.html if you want to know more.

Be aware that the corresponding update will depend on the versions declared in your Gemfile:

gem "jekyll", "3.8.5" # stick to a specific version
gem "jekyll" # versionless, will update to latest version
gem "jekyll", ">= 3.7" # optimistic
gem "jekyll", "~>3" # pessimistic, don't upgrade to next major version, that might break compatibility

See https://guides.rubygems.org/patterns/#pessimistic-version-constraint to learn about semantic versioning and version constraint.

@jekyll/documentation Should we add a section on updating gems? (even if there's nothing specific to Jekyll)

All 3 comments

Run bundle update in your terminal to update all outdated gems in your project.
Run bundle update jekyll in your terminal to just update Jekyll.

@muromtsev Most of the times, you just need to run bundle update.

See https://bundler.io/v2.0/man/bundle-update.1.html if you want to know more.

Be aware that the corresponding update will depend on the versions declared in your Gemfile:

gem "jekyll", "3.8.5" # stick to a specific version
gem "jekyll" # versionless, will update to latest version
gem "jekyll", ">= 3.7" # optimistic
gem "jekyll", "~>3" # pessimistic, don't upgrade to next major version, that might break compatibility

See https://guides.rubygems.org/patterns/#pessimistic-version-constraint to learn about semantic versioning and version constraint.

@jekyll/documentation Should we add a section on updating gems? (even if there's nothing specific to Jekyll)

Thank you for your reply.
There was a console error
in find_spec_for_exe cant find with exutable bundle
Corrected. Updated. Thank!

Was this page helpful?
0 / 5 - 0 ratings

Related issues

behrangs-sportsbet picture behrangs-sportsbet  路  3Comments

mgiuffrida picture mgiuffrida  路  4Comments

MertcanGokgoz picture MertcanGokgoz  路  3Comments

dudhatp picture dudhatp  路  3Comments

cameronmcefee picture cameronmcefee  路  3Comments