Skip to content

Commit 7c09750

Browse files
committed
version 3.1.0
1 parent 527fc30 commit 7c09750

File tree

7 files changed

+14
-7
lines changed

7 files changed

+14
-7
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ speed-measure-plugin*.json
3636
/connect.lock
3737
/coverage
3838
/projects/plotly/coverage
39+
/projects/plotly/README.md
3940
/libpeerconnection.log
4041
npm-debug.log
4142
yarn-error.log

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Changelog
22

3-
## [unreleased] - YYYY-MM-DD
3+
## [3.1.0] - 2021-03-17
44
### Changed
5+
- Updated peerDependency to angular >10.0 (see https://github.com/plotly/angular-plotly.js/issues/154)
56
- Enhanced integration with Angular CSS classes handling (See https://github.com/plotly/angular-plotly.js/pull/147)
67
- Allow user content inside plotly plot *div* element (See https://github.com/plotly/angular-plotly.js/pull/147)
78

devdocs.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
## How to publish on npm
22

3-
* Update the version on projects/plotly/package.json
3+
* Update the version in projects/plotly/package.json
4+
* Update the CHANGELOG.md
45
* `ng test --codeCoverage=true --progress=true --watch=false`
6+
* `cp README.md angular-plotly.png projects/plotly`
57
* `ng build plotly --prod`
6-
* `cp README.md angular-plotly.png dist/plotly`
78
* `npm publish dist/plotly`
8-
* `git tag -a <version> -m <version>`
9+
* `git tag -a <version> -m <version>`

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-plotly.js",
3-
"version": "3.0.0",
3+
"version": "3.1.0",
44
"scripts": {
55
"ng": "ng",
66
"start": "ng serve",

projects/plotly/angular-plotly.png

21 KB
Loading

projects/plotly/ng-package.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
{
22
"$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
33
"dest": "../../dist/plotly",
4+
"assets": [
5+
"angular-plotly.png",
6+
"README.md"
7+
],
48
"lib": {
59
"entryFile": "src/public-api.ts"
610
}
7-
}
11+
}

projects/plotly/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-plotly.js",
3-
"version": "3.0.0",
3+
"version": "3.1.0",
44
"peerDependencies": {
55
"@angular/common": ">10.0.9",
66
"@angular/core": ">10.0.9"

0 commit comments

Comments
 (0)