Skip to content

Commit

Permalink
chore(release): 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jessy1092 committed Aug 12, 2018
1 parent fb4f43b commit b74dcea
Show file tree
Hide file tree
Showing 5 changed files with 556 additions and 19 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
# Change Log

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

<a name="0.6.0"></a>
## [0.6.0](https://github.com/jessy1092/react-github-fork-ribbon/compare/v0.5.1...v0.6.0) (2018-08-12)


### Features

* Support for custom class names ([0b5319b](https://github.com/jessy1092/react-github-fork-ribbon/commit/0b5319b))

### Bug Fixes

* add rel="noopener" to anchor ([3bf9999](https://github.com/jessy1092/react-github-fork-ribbon/commit/3bf9999))
* Make ribbon smoother in Firefox ([0b89e50](https://github.com/jessy1092/react-github-fork-ribbon/commit/0b89e50))



<a name="0.5.1"></a>
## [0.5.1](https://github.com/jessy1092/react-github-fork-ribbon/compare/v0.5.0...v0.5.1) (2017-10-05)

Expand Down
6 changes: 4 additions & 2 deletions dst/react-github-fork-ribbon.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ var GitHubForkRibbon = function GitHubForkRibbon(_ref) {
target = _ref.target,
_ref$color = _ref.color,
color = _ref$color === undefined ? 'red' : _ref$color,
className = _ref.className,
_ref$className = _ref.className,
className = _ref$className === undefined ? '' : _ref$className,
children = _ref.children,
other = _objectWithoutProperties(_ref, ['position', 'href', 'target', 'color', 'className', 'children']);

Expand Down Expand Up @@ -67,7 +68,8 @@ var GitHubForkRibbon = function GitHubForkRibbon(_ref) {
'a',
{ href: href,
target: target,
style: _ribbonStyle.RibbonStyle.urlStyle },
style: _ribbonStyle.RibbonStyle.urlStyle,
rel: 'noopener' },
children
)
)
Expand Down
2 changes: 1 addition & 1 deletion dst/react-github-fork-ribbon.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-github-fork-ribbon",
"description": "Pure inline style github fork ribbon on React component",
"version": "0.5.1",
"version": "0.6.0",
"keywords": [
"fork",
"GitHub",
Expand All @@ -28,7 +28,8 @@
"start": "gulp dev",
"prepublish": "gulp transpile",
"storybook": "start-storybook -p 8000 -c storybook",
"test": "jest --coverage"
"test": "jest --coverage",
"release": "standard-version"
},
"engines": {
"node": ">=0.10.x"
Expand Down Expand Up @@ -63,6 +64,7 @@
"react-dom": "^16.0.0",
"react-hot-loader": "3.0.0-beta.6",
"react-test-renderer": "^16.0.0",
"standard-version": "^4.4.0",
"storybook-addon-specifications": "^2.1.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
Expand Down
Loading

0 comments on commit b74dcea

Please sign in to comment.