Skip to content

Commit d6cc68a

Browse files
Merge pull request #470 from jekyll/release
Release v0.8.1
2 parents f3a3893 + f8a1d18 commit d6cc68a

File tree

5 files changed

+9
-13
lines changed

5 files changed

+9
-13
lines changed

README.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ A Jekyll plugin that provides users with a traditional CMS-style graphical inter
1212

1313
Refer to the [installing plugins](https://jekyllrb.com/docs/plugins/#installing-a-plugin) section of Jekyll's documentation and install the `jekyll-admin` plugin as you would any other plugin. Here's the short version:
1414

15-
1. Add the following to your site's Gemfile:
15+
1. Add the following to your site's Gemfile:
1616

1717
```ruby
1818
gem 'jekyll-admin', group: :jekyll_plugins
1919
```
2020

21-
2. Run `bundle install`
21+
2. Run `bundle install`
2222

2323
## Usage
2424

25-
1. Start Jekyll as you would normally (`bundle exec jekyll serve`)
26-
2. Navigate to `http://localhost:4000/admin` to access the administrative interface
25+
1. Start Jekyll as you would normally (`bundle exec jekyll serve`)
26+
2. Navigate to `http://localhost:4000/admin` to access the administrative interface
2727

2828
## Options
2929

@@ -45,10 +45,6 @@ jekyll_admin:
4545

4646
Interested in contributing to Jekyll Admin? We’d love your help. Jekyll Admin is an open source project, built one contribution at a time by users like you. See [the contributing instructions](.github/CONTRIBUTING.md), and [the development docs](http://jekyll.github.io/jekyll-admin/development/) for more information.
4747

48-
## Looking for a hosted version?
49-
50-
Jekyll Admin is intended to be run on your computer alongside your local Jekyll installation. If you're looking for a hosted version, we'd recommend checking out [Siteleaf](https://www.siteleaf.com/) a hosted Jekyll editor with deep GitHub integration (whom we'd also like to thank for inspiring parts of Jekyll Admin itself!).
51-
5248
## License
5349

5450
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).

lib/jekyll-admin/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module JekyllAdmin
2-
VERSION = "0.8.0".freeze
2+
VERSION = "0.8.1".freeze
33
end

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jekyll-admin",
3-
"version": "0.8.0",
3+
"version": "0.8.1",
44
"description": "Admin Panel for Jekyll",
55
"private": true,
66
"scripts": {

src/constants/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
export const VERSION = 'v0.8.0';
1+
export const VERSION = 'v0.8.1';
22
export const ADMIN_PREFIX = '/admin';

src/containers/tests/__snapshots__/header.spec.js.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ exports[`Containers::Header renders correctly 1`] = `
2323
<span
2424
className="version"
2525
>
26-
v0.8.0
26+
v0.8.1
2727
</span>
2828
</div>
2929
`;
@@ -51,7 +51,7 @@ exports[`Containers::Header renders placeholder title 1`] = `
5151
<span
5252
className="version"
5353
>
54-
v0.8.0
54+
v0.8.1
5555
</span>
5656
</div>
5757
`;

0 commit comments

Comments
 (0)