Skip to content
This repository was archived by the owner on Jul 13, 2024. It is now read-only.

Commit 50156ed

Browse files
committed
Publish
- @gitgraph/core@1.2.0 - @gitgraph/js@1.1.0 - @gitgraph/node@0.1.10 - @gitgraph/react@1.2.0 - @gitgraph/stories@0.0.5 - @gitgraph/website@0.0.2
1 parent ba4f413 commit 50156ed

File tree

10 files changed

+49
-13
lines changed

10 files changed

+49
-13
lines changed

packages/gitgraph-core/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7+
#### [1.2.0](https://github.com/nicoespeon/gitgraph.js/compare/@gitgraph/core@1.1.0...@gitgraph/core@1.2.0)
8+
9+
> 7 May 2019
10+
11+
- Generate browser bundle for @gitgraph/js [`#287`](https://github.com/nicoespeon/gitgraph.js/pull/287)
12+
- Implement custom render for tags [`#289`](https://github.com/nicoespeon/gitgraph.js/pull/289)
13+
- Customize how we render branches labels [`#286`](https://github.com/nicoespeon/gitgraph.js/pull/286)
14+
- Stream lerna outputs [`#281`](https://github.com/nicoespeon/gitgraph.js/issues/281)
15+
716
#### [1.1.0](https://github.com/nicoespeon/gitgraph.js/compare/@gitgraph/core@1.1.0-6...@gitgraph/core@1.1.0)
817

918
> 16 April 2019

packages/gitgraph-core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitgraph/core",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "Core of gitgraph, a JavaScript library to draw pretty git graphs",
55
"author": "Nicolas Carlo <nicolascarlo.espeon@gmail.com>",
66
"contributors": [

packages/gitgraph-js/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7+
#### [1.1.0](https://github.com/nicoespeon/gitgraph.js/compare/@gitgraph/js@1.0.0...@gitgraph/js@1.1.0)
8+
9+
> 7 May 2019
10+
11+
- Generate browser bundle for @gitgraph/js [`#287`](https://github.com/nicoespeon/gitgraph.js/pull/287)
12+
- Implement custom render for tags [`#289`](https://github.com/nicoespeon/gitgraph.js/pull/289)
13+
- Customize how we render branches labels [`#286`](https://github.com/nicoespeon/gitgraph.js/pull/286)
14+
- Stream lerna outputs [`#281`](https://github.com/nicoespeon/gitgraph.js/issues/281)
15+
716
#### [1.0.0](https://github.com/nicoespeon/gitgraph.js/compare/@gitgraph/js@1.0.0-4...@gitgraph/js@1.0.0)
817

918
> 16 April 2019

packages/gitgraph-js/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitgraph/js",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"description": "Draw pretty git graphs in the browser",
55
"author": "Nicolas Carlo <nicolascarlo.espeon@gmail.com>",
66
"contributors": [
@@ -48,7 +48,7 @@
4848
"version": "auto-changelog -p -l 0 --tag-prefix @gitgraph/js@ && git add CHANGELOG.md"
4949
},
5050
"dependencies": {
51-
"@gitgraph/core": "1.1.0"
51+
"@gitgraph/core": "1.2.0"
5252
},
5353
"devDependencies": {
5454
"@types/node": "^9.4.6",

packages/gitgraph-node/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7+
#### [0.1.10](https://github.com/nicoespeon/gitgraph.js/compare/@gitgraph/node@0.1.9...@gitgraph/node@0.1.10)
8+
9+
> 7 May 2019
10+
11+
- Generate browser bundle for @gitgraph/js [`#287`](https://github.com/nicoespeon/gitgraph.js/pull/287)
12+
- Implement custom render for tags [`#289`](https://github.com/nicoespeon/gitgraph.js/pull/289)
13+
- Customize how we render branches labels [`#286`](https://github.com/nicoespeon/gitgraph.js/pull/286)
14+
- Stream lerna outputs [`#281`](https://github.com/nicoespeon/gitgraph.js/issues/281)
15+
716
#### [0.1.9](https://github.com/nicoespeon/gitgraph.js/compare/@gitgraph/node@0.1.8...@gitgraph/node@0.1.9)
817

918
> 16 April 2019

packages/gitgraph-node/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitgraph/node",
3-
"version": "0.1.9",
3+
"version": "0.1.10",
44
"description": "Draw pretty git graphs in the terminal, with node.js",
55
"author": "Nicolas Carlo <nicolascarlo.espeon@gmail.com>",
66
"contributors": [
@@ -34,7 +34,7 @@
3434
"version": "auto-changelog -p -l 0 --tag-prefix @gitgraph/node@ && git add CHANGELOG.md"
3535
},
3636
"dependencies": {
37-
"@gitgraph/core": "1.1.0",
37+
"@gitgraph/core": "1.2.0",
3838
"chalk": "^2.4.1",
3939
"lodash": "4.17.11"
4040
},

packages/gitgraph-react/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7+
#### [1.2.0](https://github.com/nicoespeon/gitgraph.js/compare/@gitgraph/react@1.1.0...@gitgraph/react@1.2.0)
8+
9+
> 7 May 2019
10+
11+
- Generate browser bundle for @gitgraph/js [`#287`](https://github.com/nicoespeon/gitgraph.js/pull/287)
12+
- Implement custom render for tags [`#289`](https://github.com/nicoespeon/gitgraph.js/pull/289)
13+
- Customize how we render branches labels [`#286`](https://github.com/nicoespeon/gitgraph.js/pull/286)
14+
- Stream lerna outputs [`#281`](https://github.com/nicoespeon/gitgraph.js/issues/281)
15+
716
#### [1.1.0](https://github.com/nicoespeon/gitgraph.js/compare/@gitgraph/react@1.1.0-8...@gitgraph/react@1.1.0)
817

918
> 16 April 2019

packages/gitgraph-react/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitgraph/react",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "Draw pretty git graphs in the browser, with React",
55
"author": "Nicolas Carlo <nicolascarlo.espeon@gmail.com>",
66
"contributors": [
@@ -43,7 +43,7 @@
4343
"version": "auto-changelog -p -l 0 --tag-prefix @gitgraph/react@ && git add CHANGELOG.md"
4444
},
4545
"dependencies": {
46-
"@gitgraph/core": "1.1.0"
46+
"@gitgraph/core": "1.2.0"
4747
},
4848
"peerDependencies": {
4949
"react": ">= 16.8.0"

packages/stories/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitgraph/stories",
3-
"version": "0.0.4",
3+
"version": "0.0.5",
44
"private": true,
55
"description": "Stories of @gitgraph rendering libraries for E2E tests",
66
"author": "Nicolas Carlo <nicolascarlo.espeon@gmail.com>",
@@ -17,8 +17,8 @@
1717
"build": "build-storybook"
1818
},
1919
"dependencies": {
20-
"@gitgraph/js": "1.0.0",
21-
"@gitgraph/react": "1.1.0"
20+
"@gitgraph/js": "1.1.0",
21+
"@gitgraph/react": "1.2.0"
2222
},
2323
"devDependencies": {
2424
"@babel/core": "7.4.3",

packages/website/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gitgraph/website",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"private": true,
55
"description": "Gitgraphjs.com website",
66
"author": "Nicolas Carlo <nicolascarlo.espeon@gmail.com>",
@@ -23,8 +23,8 @@
2323
"deploy": "npm run build && npm run github-files && gh-pages -d dist"
2424
},
2525
"dependencies": {
26-
"@gitgraph/js": "1.0.0",
27-
"@gitgraph/react": "1.1.0"
26+
"@gitgraph/js": "1.1.0",
27+
"@gitgraph/react": "1.2.0"
2828
},
2929
"devDependencies": {
3030
"gh-pages": "2.0.1",

0 commit comments

Comments
 (0)