Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.0.1 #3

Merged
merged 8 commits into from
May 11, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# 0.0.1 (2018-04-18)
# 1.0.1 (2018-05-10)

#### :bug: Bug Fix
* [#3](https://github.com/primer/primer-primitives/pull/3) Add dependencies to primer-primitives package. ([@broccolini](https://github.com/broccolini))
* [#3](https://github.com/primer/primer-primitives/pull/3) Point main at correct files. ([@broccolini](https://github.com/broccolini))

#### :house: Internal
* [#3](https://github.com/primer/primer-primitives/pull/3) Fix broken links in Readme's. ([@broccolini](https://github.com/broccolini))

# 1.0.0 (2018-04-29)

#### :rocket: Enhancement
* Add color primitives as json file.
* [#2](https://github.com/primer/primer-primitives/pull/1) Add color, typography, and spacing packages. ([@broccolini](https://github.com/broccolini))
* [#2](https://github.com/primer/primer-primitives/pull/1) Add primer-primitives package that imports all primitives. ([@broccolini](https://github.com/broccolini))
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ This repository is distributed with [npm][npm]. After [installing npm][install-n

```sh
$ npm install --save primer-primitives
```

## License

Expand Down
1 change: 1 addition & 0 deletions modules/primer-colors/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ This repository is distributed with [npm][npm]. After [installing npm][install-n

```sh
$ npm install --save primer-colors
```

## License

Expand Down
4 changes: 2 additions & 2 deletions modules/primer-colors/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "primer-colors",
"version": "1.0.0",
"version": "1.0.1",
"description": "Color primitives for Primer design system",
"main": "index.js",
"main": "colors.json",
"repository": "https://github.com/primer/primer-primitives/tree/master/modules/primer-colors",
"keywords": [
"primitives",
Expand Down
1 change: 1 addition & 0 deletions modules/primer-primitives/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ This repository is distributed with [npm][npm]. After [installing npm][install-n

```sh
$ npm install --save primer-primitives
```

## License

Expand Down
9 changes: 7 additions & 2 deletions modules/primer-primitives/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "primer-primitives",
"version": "1.0.0",
"version": "1.0.1",
"description": "Typography, spacing, and color primitives for Primer design system",
"main": "index.js",
"repository": "https://github.com/primer/primer-primitives/tree/master/modules/primer-primitives",
Expand All @@ -17,5 +17,10 @@
"bugs": {
"url": "https://github.com/primer/primer-primitives/issues"
},
"homepage": "https://github.com/primer/primer-primitives#readme"
"homepage": "https://github.com/primer/primer-primitives#readme",
"dependencies": {
"primer-colors": "^1.0.1",
"primer-spacing": "^1.0.1",
"primer-typography": "^1.0.1"
}
}
1 change: 1 addition & 0 deletions modules/primer-spacing/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ This repository is distributed with [npm][npm]. After [installing npm][install-n

```sh
$ npm install --save primer-spacing
```

## License

Expand Down
4 changes: 2 additions & 2 deletions modules/primer-spacing/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "primer-spacing",
"version": "1.0.0",
"version": "1.0.1",
"description": "Spacing primitives for Primer design system",
"main": "index.js",
"main": "spacing.json",
"repository": "https://github.com/primer/primer-primitives/tree/master/modules/primer-spacing",
"keywords": [
"primitives",
Expand Down
1 change: 1 addition & 0 deletions modules/primer-typography/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ This repository is distributed with [npm][npm]. After [installing npm][install-n

```sh
$ npm install --save primer-typography
```

## License

Expand Down
4 changes: 2 additions & 2 deletions modules/primer-typography/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "primer-typography",
"version": "1.0.0",
"version": "1.0.1",
"description": "Typography primitives for Primer design system",
"main": "index.js",
"main": "typography.json",
"repository": "https://github.com/primer/primer-primitives/tree/master/modules/primer-typography",
"keywords": [
"primitives",
Expand Down