Skip to content

Commit

Permalink
chore(release): publish
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Feb 18, 2021
1 parent db4f251 commit 074b63a
Show file tree
Hide file tree
Showing 8 changed files with 86 additions and 8 deletions.
16 changes: 16 additions & 0 deletions packages/compiler-explorer-directives/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.4.0 (2021-02-18)


### Features

* add debug logs ([4ae0a07](https://github.com/dvirtz/reveal-compiler-explorer/commit/4ae0a07691365cd6e114849051dad6bcdb155931))
* get supported languages from CE ([4d5a87b](https://github.com/dvirtz/reveal-compiler-explorer/commit/4d5a87b35ff44c71ace2c04d540ecdfa01d22528))



## 1.3.3 (2020-10-29)





## 1.3.4 (2021-02-02)

**Note:** Version bump only for package compiler-explorer-directives
2 changes: 1 addition & 1 deletion packages/compiler-explorer-directives/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "compiler-explorer-directives",
"version": "1.3.4",
"version": "1.4.0",
"description": "Utilities for interacting with Compiler Explorer",
"author": "dvirtz <[email protected]>",
"homepage": "https://github.com/dvirtz/reveal-compiler-explorer/tree/master/packages/compiler-explorer-directives",
Expand Down
20 changes: 20 additions & 0 deletions packages/reveal-compiler-explorer-demo/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 2.0.0 (2021-02-18)


### Features

* use async parsing ([16dd579](https://github.com/dvirtz/reveal-compiler-explorer/commit/16dd579d1e075c9e45389a2ef4f099db64dcccc1))


### BREAKING CHANGES

* removes `parseMarkdownSync` API



## 1.3.3 (2020-10-29)





## 1.3.4 (2021-02-02)

**Note:** Version bump only for package reveal-compiler-explorer-demo
6 changes: 3 additions & 3 deletions packages/reveal-compiler-explorer-demo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "reveal-compiler-explorer-demo",
"version": "1.3.4",
"version": "2.0.0",
"license": "MIT",
"type": "module",
"private": true,
Expand All @@ -9,8 +9,8 @@
"generate": "reveal-md demo.md --static"
},
"dependencies": {
"reveal-compiler-explorer": "^1.3.4",
"reveal-test": "^1.3.4"
"reveal-compiler-explorer": "^1.4.0",
"reveal-test": "^2.0.0"
},
"devDependencies": {
"reveal-md": "^4.1.4"
Expand Down
17 changes: 17 additions & 0 deletions packages/reveal-compiler-explorer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,23 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 1.4.0 (2021-02-18)


### Features

* add debug logs ([4ae0a07](https://github.com/dvirtz/reveal-compiler-explorer/commit/4ae0a07691365cd6e114849051dad6bcdb155931))
* get supported languages from CE ([4d5a87b](https://github.com/dvirtz/reveal-compiler-explorer/commit/4d5a87b35ff44c71ace2c04d540ecdfa01d22528))
* skip unsupported code blocks ([4e0bbc7](https://github.com/dvirtz/reveal-compiler-explorer/commit/4e0bbc72335675f003d3e5cb93fc52fb6f2725a2))



## 1.3.3 (2020-10-29)





## 1.3.4 (2021-02-02)

**Note:** Version bump only for package reveal-compiler-explorer
4 changes: 2 additions & 2 deletions packages/reveal-compiler-explorer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "reveal-compiler-explorer",
"version": "1.3.4",
"version": "1.4.0",
"description": "A Compiler Explorer plugin for reveal.js",
"homepage": "https://github.com/dvirtz/reveal-compiler-explorer/tree/master/packages/reveal-compiler-explorer",
"bugs": {
Expand Down Expand Up @@ -31,7 +31,7 @@
"build": "rollup -c"
},
"dependencies": {
"compiler-explorer-directives": "^1.3.4",
"compiler-explorer-directives": "^1.4.0",
"hammerjs": "^2.0.8",
"reveal.js": "^4.1.0"
}
Expand Down
25 changes: 25 additions & 0 deletions packages/reveal-test/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,31 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# 2.0.0 (2021-02-18)


### Bug Fixes

* multiple newlines ([2659c02](https://github.com/dvirtz/reveal-compiler-explorer/commit/2659c020d68e4438716d3c9443b848d951927c4e))


### Features

* use async parsing ([16dd579](https://github.com/dvirtz/reveal-compiler-explorer/commit/16dd579d1e075c9e45389a2ef4f099db64dcccc1))


### BREAKING CHANGES

* removes `parseMarkdownSync` API



## 1.3.3 (2020-10-29)





## 1.3.4 (2021-02-02)


Expand Down
4 changes: 2 additions & 2 deletions packages/reveal-test/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "reveal-test",
"version": "1.3.4",
"version": "2.0.0",
"description": "Utilities for testing with compiler explorer",
"author": "dvirtz <[email protected]>",
"homepage": "https://github.com/dvirtz/reveal-compiler-explorer/tree/master/packages/reveal-test",
Expand Down Expand Up @@ -36,7 +36,7 @@
"url": "https://github.com/dvirtz/reveal-compiler-explorer/issues"
},
"dependencies": {
"compiler-explorer-directives": "^1.3.4"
"compiler-explorer-directives": "^1.4.0"
},
"engines": {
"node": ">=10.0.0"
Expand Down

0 comments on commit 074b63a

Please sign in to comment.