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 10.10.2 #617

Merged
merged 6 commits into from
Nov 29, 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
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# 10.10.2

#### :memo: Documentation
* [#614](https://github.com/primer/primer/pull/614) fix broken border-radius helper example. ([@joelhawksley](https://github.com/joelhawksley))

#### :house: Internal
* [#615](https://github.com/primer/primer/pull/615) pin npm-run-all@4.1.5. ([@shawnbot](https://github.com/shawnbot))

#### Committers: 2
- Joel Hawksley ([joelhawksley](https://github.com/joelhawksley))
- Shawn Allen ([shawnbot](https://github.com/shawnbot))

# 10.10.1

#### :memo: Documentation
Expand Down
4 changes: 2 additions & 2 deletions modules/primer-core/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "6.10.5",
"version": "6.10.6",
"name": "primer-core",
"description": "Primer's core modules",
"homepage": "http://primer.github.io/",
Expand Down Expand Up @@ -41,6 +41,6 @@
"primer-table-object": "1.4.11",
"primer-tooltips": "1.5.9",
"primer-truncate": "1.4.11",
"primer-utilities": "4.14.0"
"primer-utilities": "4.14.1"
}
}
16 changes: 8 additions & 8 deletions modules/primer-utilities/docs/borders.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,17 +130,17 @@ Use the following utilities to add or remove rounded corners: `rounded-0` remove
You can also add rounded corners to each edge (top, right, bottom, left) with the following utilities:

```html
<div class="border rounded-top mb-2">
.rounded-top
<div class="border rounded-top-1 mb-2">
.rounded-top-1
</div>
<div class="border rounded-right mb-2">
.rounded-right
<div class="border rounded-right-1 mb-2">
.rounded-right-1
</div>
<div class="border rounded-bottom mb-2">
.rounded-bottom
<div class="border rounded-bottom-1 mb-2">
.rounded-bottom-1
</div>
<div class="border rounded-left mb-2">
.rounded-left
<div class="border rounded-left-1 mb-2">
.rounded-left-1
</div>
```

Expand Down
2 changes: 1 addition & 1 deletion modules/primer-utilities/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "4.14.0",
"version": "4.14.1",
"name": "primer-utilities",
"description": "Immutable, atomic CSS classes to rapidly build product",
"homepage": "http://primer.github.io/",
Expand Down
6 changes: 3 additions & 3 deletions modules/primer/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "10.10.1",
"version": "10.10.2",
"name": "primer",
"description": "Primer is the CSS framework that powers GitHub's front-end design. primer includes 23 packages that are grouped into 3 core meta-packages for easy install. Each package and meta-package is independently versioned and distributed via npm, so it's easy to include all or part of Primer within your own project.",
"homepage": "http://primer.github.io/",
Expand Down Expand Up @@ -38,7 +38,7 @@
"primer-branch-name": "1.0.9",
"primer-breadcrumb": "1.5.7",
"primer-buttons": "2.6.2",
"primer-core": "6.10.5",
"primer-core": "6.10.6",
"primer-forms": "2.1.6",
"primer-labels": "1.5.11",
"primer-layout": "1.6.0",
Expand All @@ -61,7 +61,7 @@
"primer-tables": "1.5.1",
"primer-tooltips": "1.5.9",
"primer-truncate": "1.4.11",
"primer-utilities": "4.14.0"
"primer-utilities": "4.14.1"
},
"keywords": [
"primer",
Expand Down
Loading