Skip to content

Commit

Permalink
0.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
yhatt committed Jun 28, 2019
1 parent 0087795 commit 302c083
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 6 deletions.
22 changes: 17 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,13 @@ references:
path: ./coverage
destination: coverage

version: &version
filters:
branches:
ignore: /.*/
tags:
only: /^v.*/

version: 2
jobs:
audit:
Expand Down Expand Up @@ -151,6 +158,14 @@ jobs:
steps:
- checkout

- restore_cache:
keys:
- dependencies-{{ .Environment.CI_CACHE_KEY }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "yarn.lock" }}-{{ .Branch }}
- dependencies-{{ .Environment.CI_CACHE_KEY }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "yarn.lock" }}-
- dependencies-{{ .Environment.CI_CACHE_KEY }}-{{ .Environment.CIRCLE_JOB }}-

- run: yarn install

- run:
name: Create release on GitHub
command: curl https://raw.githubusercontent.com/marp-team/marp/master/github-release.js | node
Expand Down Expand Up @@ -185,12 +200,9 @@ workflows:
branches:
only: master
- pack:
filters:
branches:
ignore: /.*/
tags:
only: /^v.*/
<<: *version
- release:
<<: *version
context: github-release
requires:
- pack
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## v0.11.1 - 2019-06-28

### Added

- A demo slide and the button to run in [Gitpod](https://gitpod.io/#https://github.com/marp-team/marp-cli) ([#113](https://github.com/marp-team/marp-cli/pull/113) by [@mouse484](https://github.com/mouse484), [#114](https://github.com/marp-team/marp-cli/pull/114))
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@marp-team/marp-cli",
"version": "0.11.0",
"version": "0.11.1",
"description": "A CLI interface for Marp and Marpit based converters",
"license": "MIT",
"author": {
Expand Down

0 comments on commit 302c083

Please sign in to comment.