Skip to content

Commit

Permalink
chore(release): 5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aitboudad committed Jun 20, 2020
1 parent c5ca4c8 commit d4e3e10
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 3 deletions.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/dist
/coverage
CHANGELOG.md
41 changes: 40 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,46 @@
# Change Log
# Changelog

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [5.0.0](https://github.com/aitboudad/ngx-loading-bar/compare/v4.2.0...v5.0.0) (2020-06-20)


### ⚠ BREAKING CHANGES

* **core:** The library now requires Angular 9

* **core:** The loading bar internal selectors has been changed:

Before:
```html
<ngx-loading-bar>
<div id="loading-bar-spinner"><div class="spinner-icon"></div></div>
<div id="loading-bar"><div class="bar"><div class="peg"></div></div></div>
</ngx-loading-bar>
```

After:
```html
<ngx-loading-bar>
<div class="ngx-bar"></div>
<div class="ngx-spinner"><div class="ngx-spinner-icon"></div></div>
</ngx-loading-bar>
```


### Features

* **core:** change bar and spinner selector + unset z-index when fixed is false ([#159](https://github.com/aitboudad/ngx-loading-bar/issues/159)) ([f1ad7a8](https://github.com/aitboudad/ngx-loading-bar/commit/f1ad7a83f97b26fd2d82aa8f8b2474938b12ca69))
* **core:** set peerDependency to angular >=9.0 ([185f1e2](https://github.com/aitboudad/ngx-loading-bar/commit/185f1e2d87c79d763362939c28cec5304a02169f)), closes [#151](https://github.com/aitboudad/ngx-loading-bar/issues/151)
* **core:** support managing multiple loading bars ([c59863f](https://github.com/aitboudad/ngx-loading-bar/commit/c59863f8c1b4498d3a85b8563d2cef5be6829ae6)), closes [#121](https://github.com/aitboudad/ngx-loading-bar/issues/121)
* **core:** use OnPush change detection ([47d8cff](https://github.com/aitboudad/ngx-loading-bar/commit/47d8cff6fa4844ad0fb9ff6556a3cbad61fd5a04))
* 🎸 remove deprecated @angular/http package ([#139](https://github.com/aitboudad/ngx-loading-bar/issues/139)) ([666e341](https://github.com/aitboudad/ngx-loading-bar/commit/666e3412175485fd40392930d0a450cbdcead411))


### Bug Fixes

* 🐛 prevent start when the timer is not triggered yet ([88f5254](https://github.com/aitboudad/ngx-loading-bar/commit/88f52549961cfa86d6a6d6399b269ec39b9c4c0f)), closes [#143](https://github.com/aitboudad/ngx-loading-bar/issues/143)

<a name="4.2.0"></a>

# [4.2.0](https://github.com/aitboudad/ngx-loading-bar/compare/v4.1.1...v4.2.0) (2019-02-28)
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngx-loading-bar/common",
"version": "5.0.0-alpha.2",
"version": "5.0.0",
"license": "MIT",
"author": "Abdellatif Ait boudad",
"description": "A fully automatic loading bar / progress bar with zero configuration for Angular app (http, http-client and router).",
Expand Down

0 comments on commit d4e3e10

Please sign in to comment.