Skip to content
This repository was archived by the owner on May 17, 2023. It is now read-only.

Commit f5bf075

Browse files
author
Franco Correa
authored
Release 0.11.0 (#1305)
- [x] Make sure `stable` branch does not exist (on both github and local, delete it if it does) - [x] Pull master - [x] Create new local branch `stable` - [x] Update changelog - [x] Update root package version (only [root package.json](https://github.com/auth0/cosmos/blob/master/package.json#L3)) - [x] Commit and push (**pushing to stable branch with new version will trigger jenkins release task**) - [x] Wait for [jenkins task](https://tools-jenkins-us-west-2.forge.auth0.net/blue/organizations/jenkins/cosmos/activity/) to be completed (confirm it published the version you wanted under `npm run scripts deploy`) - [x] Run `yarn scripts deploy.catchup` on local `stable` branch and push - [ ] Merge PR to master - [ ] Go to [zeit dashboard](https://zeit.co/dashboard/deployments) and create an alias for the latest deployment) (example: `now alias cosmos-rzbpuowrox.now.sh auth0-cosmos-0-8-0.now.sh --team=auth0-design`) - [ ] Create a [new release on github](https://github.com/auth0/cosmos/releases) - [ ] Delete stable branch on github - [ ] Announce it on the slack channel: [design-system](https://auth0.slack.com/messages/C5ZK0DD8X/)
1 parent c7c486c commit f5bf075

File tree

10 files changed

+43
-14
lines changed

10 files changed

+43
-14
lines changed

changelog.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,35 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). Currently, this project is using an `0.x` versioning system to indicate its preview status. As such, it does _not_ currently adhere to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). Once we reach production readiness, we will follow semver beginning with our `1.0` release. In the meantime, please read this changelog for information on breaking changes!
66

7+
## 0.11.0 [December 18, 2018]
8+
9+
### Added
10+
Sortable Resource List [#1098]
11+
Integration tests for Tabs [#1278]
12+
13+
### Fixed
14+
Implement attrs to styled API [#1263]
15+
Make Tabs accessible [#1264]
16+
Examples: react + react-dom should have same version [#1284]
17+
Tooltip: Fix wrapping for long text [#1262]
18+
Fix dialog [#1260]
19+
Fix react router dom dependency [#1300]
20+
Fix Resource List columns [#1192]
21+
Fix docs links [#1280]
22+
Fix version switcher [#1256]
23+
Fix button action onClick handler not including the item [#1276]
24+
25+
Internal: Clean up code for masked TextInput [#1283]
26+
Internal: Add module to all stories [#1288]
27+
28+
### Changed
29+
Internal: Massive find and replace for styled [#1249]
30+
Remove line height declaration on tables [#1286]
31+
Replace extend with styled [#1279]
32+
Remove pointer events from icon [#1298]
33+
Changes the Page Header from grid to flex [#1285]
34+
35+
736
## 0.10.1 [December 11, 2018]
837

938
### Fixed

core/babel-preset/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@auth0/babel-preset-cosmos",
33
"description": "babel preset to use cosmos",
4-
"version": "0.10.1",
4+
"version": "0.11.0",
55
"repository": "auth0/cosmos",
66
"main": "index.js",
77
"author": "siddharthkp",

core/components/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "@auth0/cosmos",
33
"description": "Component library for Auth0 Design System",
4-
"version": "0.10.1",
4+
"version": "0.11.0",
55
"repository": "auth0/cosmos",
66
"main": "index.js",
77
"scripts": {},
88
"keywords": [],
99
"author": "auth0",
1010
"license": "MIT",
1111
"dependencies": {
12-
"@auth0/cosmos-tokens": "0.10.1",
12+
"@auth0/cosmos-tokens": "0.11.0",
1313
"md5": "^2.2.1",
1414
"prop-types": "15.6.1",
1515
"react-sortable-hoc": "^0.8.3",

core/tokens/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@auth0/cosmos-tokens",
33
"description": "Tokens for Auth0 Design System",
4-
"version": "0.10.1",
4+
"version": "0.11.0",
55
"repository": "auth0/cosmos",
66
"main": "index.js",
77
"scripts": {},

examples/manage/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
"start": "cosmos-scripts start"
1010
},
1111
"dependencies": {
12-
"@auth0/cosmos": "0.10.1",
12+
"@auth0/cosmos": "0.11.0",
1313
"@auth0/cosmos-fonts": "0.0.1",
1414
"react": "16.6.3",
1515
"react-dom": "16.6.3",
1616
"react-router-dom": "4.2.2"
1717
},
1818
"devDependencies": {
19-
"@auth0/cosmos-scripts": "0.10.1"
19+
"@auth0/cosmos-scripts": "0.11.0"
2020
}
2121
}

examples/perf-tests/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
"start": "cosmos-scripts start"
1111
},
1212
"dependencies": {
13-
"@auth0/cosmos": "0.10.1",
13+
"@auth0/cosmos": "0.11.0",
1414
"react": "16.3.0",
1515
"react-dom": "16.3.0"
1616
},
1717
"devDependencies": {
18-
"@auth0/cosmos-scripts": "0.10.1"
18+
"@auth0/cosmos-scripts": "0.11.0"
1919
}
2020
}

examples/webpack-hello-world/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
"start": "cosmos-scripts start"
1111
},
1212
"dependencies": {
13-
"@auth0/cosmos": "0.10.1",
13+
"@auth0/cosmos": "0.11.0",
1414
"@auth0/cosmos-fonts": "0.0.1",
1515
"react": "16.3.0",
1616
"react-dom": "16.3.0"
1717
},
1818
"devDependencies": {
19-
"@auth0/cosmos-scripts": "0.10.1"
19+
"@auth0/cosmos-scripts": "0.11.0"
2020
}
2121
}

internal/cosmos-scripts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@auth0/cosmos-scripts",
3-
"version": "0.10.1",
3+
"version": "0.11.0",
44
"description": "",
55
"bin": {
66
"cosmos-scripts": "cli.js"

internal/docs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"start": "cosmos-scripts start"
1010
},
1111
"dependencies": {
12-
"@auth0/cosmos": "0.10.1",
12+
"@auth0/cosmos": "0.11.0",
1313
"@auth0/cosmos-fonts": "0.0.2",
1414
"fuzzysearch": "1.0.3",
1515
"js-beautify": "1.7.5",
@@ -26,6 +26,6 @@
2626
"yamljs": "0.3.0"
2727
},
2828
"devDependencies": {
29-
"@auth0/cosmos-scripts": "0.10.1"
29+
"@auth0/cosmos-scripts": "0.11.0"
3030
}
3131
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cosmos",
3-
"version": "0.10.1",
3+
"version": "0.11.0",
44
"engine": "^7.0.0",
55
"private": true,
66
"workspaces": [

0 commit comments

Comments
 (0)