Skip to content

Commit

Permalink
Merge pull request #470 from jekyll/release
Browse files Browse the repository at this point in the history
Release v0.8.1
  • Loading branch information
mertkahyaoglu committed Jul 17, 2018
2 parents f3a3893 + f8a1d18 commit d6cc68a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 13 deletions.
12 changes: 4 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ A Jekyll plugin that provides users with a traditional CMS-style graphical inter

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:

1. Add the following to your site's Gemfile:
1. Add the following to your site's Gemfile:

```ruby
gem 'jekyll-admin', group: :jekyll_plugins
```

2. Run `bundle install`
2. Run `bundle install`

## Usage

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

## Options

Expand All @@ -45,10 +45,6 @@ jekyll_admin:

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.

## Looking for a hosted version?

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!).

## License

The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
2 changes: 1 addition & 1 deletion lib/jekyll-admin/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module JekyllAdmin
VERSION = "0.8.0".freeze
VERSION = "0.8.1".freeze
end
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jekyll-admin",
"version": "0.8.0",
"version": "0.8.1",
"description": "Admin Panel for Jekyll",
"private": true,
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/constants/index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export const VERSION = 'v0.8.0';
export const VERSION = 'v0.8.1';
export const ADMIN_PREFIX = '/admin';
4 changes: 2 additions & 2 deletions src/containers/tests/__snapshots__/header.spec.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ exports[`Containers::Header renders correctly 1`] = `
<span
className="version"
>
v0.8.0
v0.8.1
</span>
</div>
`;
Expand Down Expand Up @@ -51,7 +51,7 @@ exports[`Containers::Header renders placeholder title 1`] = `
<span
className="version"
>
v0.8.0
v0.8.1
</span>
</div>
`;

0 comments on commit d6cc68a

Please sign in to comment.