Skip to content

Commit 5816be2

Browse files
committed
chore(): release alpha.0
1 parent 3557839 commit 5816be2

File tree

2 files changed

+43
-1
lines changed

2 files changed

+43
-1
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<a name="2.0.0-alpha.0"></a>
2+
# 2.0.0-alpha.0 titanium-octopus (2016-03-15)
3+
4+
### First release of angular2-material!
5+
6+
This inaugural release includes 6 components:
7+
* [md-button](src/components/button) (buttons and anchors)
8+
* [md-card](src/components/card)
9+
* [md-toolbar](src/components/toolbar)
10+
* [md-sidenav](src/components/sidenav)
11+
* [md-checkbox](src/components/checkbox)
12+
* [md-progress-circle and md-spinner](src/components/progress-circle)
13+
14+
As the alpha process continues, these components will continue to evolve. There *will* be
15+
breaking changes between alpha releases; the alpha releases are here for people that want an
16+
early look or who like to live on the edge and are very tolerant of breaking API and behavior
17+
changes.

README.md

+26-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,32 @@
66
This is the home for the Angular team's Material Design components built on top of Angular 2.
77

88
### Project status
9-
Nothing has been released yet. An alpha.0 is coming soon.
9+
The alpha has begun! See the [changelog](CHANGELOG.md) for more information.
10+
11+
Individual components can be installed with `npm`:
12+
```bash
13+
# The core module is required as a peerDependency for other components
14+
npm install --save @angular2-material/core @angular2-material/checkbox
15+
```
16+
17+
If you're using SystemJS as your module loader, your configuration for the angular-material
18+
packages should look like:
19+
```js
20+
// The core package is required as a peerDependency for other components.
21+
'@angular2-material/core': {
22+
format: 'cjs',
23+
defaultExtension: 'js',
24+
main: 'core.js'
25+
},
26+
'@angular2-material/checkbox': {
27+
format: 'cjs',
28+
defaultExtension: 'js',
29+
main: 'checkbox.js'
30+
},
31+
```
32+
33+
During alpha, breaking API and behavior changes will be occurring regularly.
34+
1035
Check out our [directory of design documents](https://github.com/angular/material2/wiki/Design-doc-directory) for more insight into our process.
1136

1237
We are still getting our CI infrastructure (tests, lint etc.) set up, as well as building out

0 commit comments

Comments
 (0)