Skip to content
This repository was archived by the owner on Jan 22, 2018. It is now read-only.

Commit 83029bd

Browse files
author
Kamil Kisiela
committed
Merge branch 'release/v0.7.2' into develop
2 parents 606b2e8 + a6d8f31 commit 83029bd

File tree

8 files changed

+30
-7
lines changed

8 files changed

+30
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5-
## [Unreleased]
5+
## [0.7.2] - 2015-12-08
66
### Added
77
- Documentation for all fields and wrappers
8+
- Banner with version in dist files
9+
10+
### Changed
11+
- Links to repository after transfer from wieldo to formly-js
812

913
## [0.7.1] - 2015-12-01
1014
### Changed
@@ -90,7 +94,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
9094

9195
## 0.0.1 - 2015-11-06
9296

93-
[Unreleased]: https://github.com/wieldo/angular-formly-templates-material/compare/v0.7.1...HEAD
97+
[0.7.2]: https://github.com/wieldo/angular-formly-templates-material/compare/v0.7.1...v0.7.2
9498
[0.7.1]: https://github.com/wieldo/angular-formly-templates-material/compare/v0.7.0...v0.7.1
9599
[0.7.0]: https://github.com/wieldo/angular-formly-templates-material/compare/v0.6.0...v0.7.0
96100
[0.6.0]: https://github.com/wieldo/angular-formly-templates-material/compare/v0.5.2...v0.6.0

dist/formly-material.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/*!
2+
* angular-formly-material JavaScript Library v0.7.2
3+
*
4+
* @license MIT (http://license.angular-formly.com)
5+
*
6+
* built with ♥ by Kamil Kisiela <[email protected]>
7+
*/
18
(function webpackUniversalModuleDefinition(root, factory) {
29
if(typeof exports === 'object' && typeof module === 'object')
310
module.exports = factory(require("angular"));

dist/formly-material.min.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/formly-material.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ var client = 'client';
33
Package.describe({
44
name: "wieldo:angular-formly-templates-material",
55
summary: "Material design templates for angular-formly",
6-
version: "0.7.1",
6+
version: "0.7.2",
77

88
documentation: 'README.md',
99
git: 'https://github.com/formly-js/angular-formly-templates-material.git'

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-formly-material",
3-
"version": "0.7.1",
3+
"version": "0.7.2",
44
"description": "Material design templates for angular-formly",
55
"main": "dist/formly-material.js",
66
"scripts": {

webpack/dist.js

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
1+
var webpack = require('webpack');
12
var build = require('./build')('dist');
3+
var pkg = require('../package.json');
24

35
module.exports = {
46
entry: build.entry,
57
output: build.output(),
68
module: {
79
loaders: build.loaders()
8-
}
10+
},
11+
plugins: [
12+
new webpack.BannerPlugin(pkg.name + " JavaScript Library v" + pkg.version + "\n" +
13+
"\n" +
14+
"@license MIT (http://license.angular-formly.com)\n" +
15+
"\n" +
16+
"built with ♥ by " + pkg.author)
17+
]
918
};

webpack/prod.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
var webpack = require('webpack');
22
var build = require('./build')('prod');
3+
var pkg = require('../package.json');
34

45
module.exports = {
56
entry: build.entry,
@@ -9,6 +10,7 @@ module.exports = {
910
loaders: build.loaders()
1011
},
1112
plugins: [
12-
new webpack.optimize.UglifyJsPlugin()
13+
new webpack.optimize.UglifyJsPlugin(),
14+
new webpack.BannerPlugin(pkg.name + " JavaScript Library v" + pkg.version + " | MIT | built with ♥ by " + pkg.author)
1315
]
1416
};

0 commit comments

Comments
 (0)