From 57b86ee77eab0a9cddfd6b6bc7681051c1d16a78 Mon Sep 17 00:00:00 2001 From: Ashwin Maroli Date: Sat, 3 Sep 2016 18:09:06 +0530 Subject: [PATCH 1/2] add a line about updating theme-gems in the docs --- site/_docs/themes.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/site/_docs/themes.md b/site/_docs/themes.md index 55e14b4b..a07e9cfb 100644 --- a/site/_docs/themes.md +++ b/site/_docs/themes.md @@ -94,3 +94,5 @@ Themes are published via [RubyGems.org](https://rubygems.org). You'll need a Rub 2. Next, push your packaged theme up to the RubyGems service, by running the following command, again replacing `my-awesome-jekyll-theme` with the name of your theme: gem push my-awesome-jekyll-theme-*.gem + +3. To release a new version of your theme, simply update the version number in the gemspec file, ( `my-awesome-jekyll-theme.gemspec` in this example ), following the principles of [Semantic Versioning](http://semver.org/) and then repeat Steps 1 & 2 above. From a666e6faee3c89e9bcc44b6fb1ce4a986df5d4c5 Mon Sep 17 00:00:00 2001 From: Ashwin Maroli Date: Sun, 4 Sep 2016 13:04:24 +0530 Subject: [PATCH 2/2] update line about semver to be less authoritative --- site/_docs/themes.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/site/_docs/themes.md b/site/_docs/themes.md index a07e9cfb..6fff61b2 100644 --- a/site/_docs/themes.md +++ b/site/_docs/themes.md @@ -95,4 +95,5 @@ Themes are published via [RubyGems.org](https://rubygems.org). You'll need a Rub gem push my-awesome-jekyll-theme-*.gem -3. To release a new version of your theme, simply update the version number in the gemspec file, ( `my-awesome-jekyll-theme.gemspec` in this example ), following the principles of [Semantic Versioning](http://semver.org/) and then repeat Steps 1 & 2 above. +3. To release a new version of your theme, simply update the version number in the gemspec file, ( `my-awesome-jekyll-theme.gemspec` in this example ), and then repeat Steps 1 & 2 above. +We recommend that you follow [Semantic Versioning](http://semver.org/) while bumping your theme-version.