Skip to content
This repository was archived by the owner on Oct 14, 2025. It is now read-only.

Commit 1690124

Browse files
committed
prepare v0.2.0
1 parent 2f88148 commit 1690124

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
All notable changes to the "react-github-buttons" project will be documented in this file.
44

55
## [Unreleased]
6+
7+
## [0.2.0] 2019-6-13
68
### Added
79

810
- Watch Button

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,27 +19,29 @@ npm install --save react-github-buttons
1919
```tsx
2020
import React from 'react';
2121

22-
import { Fork, Star } from 'react-github-buttons';
22+
import { Fork, Star, Watch } from 'react-github-buttons';
2323

2424
function App() {
2525
return (
2626
<div>
2727
<Star owner='facebook' repo='react' />
2828
<Fork owner='facebook' repo='react' />
29+
<Watch owner='facebook' repo='react' />
2930
</div>
3031
)
3132
}
3233
```
3334

3435
## Release Notes
3536

36-
### 0.1.0
37+
### 0.2.0
38+
#### Added
3739

38-
- Add Star and Fork button.
40+
- Watch Button
3941

4042
## Issues
4143

42-
Issues, bugs and feature request at https://github.com/vaibhavhrt/react-github-buttons/issues
44+
Issues, bugs and feature request at [github issues page](https://github.com/vaibhavhrt/react-github-buttons/issues)
4345

4446
-----------------------------------------------------------------------------------------------------------
4547

example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-github-buttons-example",
33
"homepage": "https://vaibhavhrt.github.io/react-github-buttons",
4-
"version": "0.1.0",
4+
"version": "0.2.0",
55
"license": "MIT",
66
"private": true,
77
"dependencies": {

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-github-buttons",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"description": "React Components for dynamic buttons for github repo's star, fork etc.",
55
"author": "vaibhavhrt",
66
"license": "MIT",
@@ -18,7 +18,7 @@
1818
"build": "rollup -c",
1919
"start": "rollup -c -w",
2020
"prepare": "npm run build",
21-
"predeploy": "cd example && npm install && npm run build",
21+
"predeploy": "cd example && npm run build",
2222
"deploy": "gh-pages -d example/build",
2323
"lint": "tslint **/src/**.{ts,tsx} --exclude **/node_modules/**"
2424
},

0 commit comments

Comments
 (0)