Skip to content

Commit 786d7e1

Browse files
committed
docs(project): Updating CHANGELOG.md for v1.0.1
1 parent 893ebc6 commit 786d7e1

File tree

4 files changed

+32
-20
lines changed

4 files changed

+32
-20
lines changed

Diff for: CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## [1.0.1](https://github.com/angular-material-extensions/input-counter/compare/1.0.0...1.0.1) (2022-07-06)
2+
13
# [1.0.0](https://github.com/angular-material-extensions/input-counter/compare/0.1.1...1.0.0) (2022-07-06)
24

35

Diff for: LICENSE

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2022 Anthony Nahas
4+
5+
Permission is hereby granted, free of charge, to any person obtaining
6+
a copy of this software and associated documentation files (the
7+
"Software"), to deal in the Software without restriction, including
8+
without limitation the rights to use, copy, modify, merge, publish,
9+
distribute, sublicense, and/or sell copies of the Software, and to
10+
permit persons to whom the Software is furnished to do so, subject to
11+
the following conditions:
12+
13+
The above copyright notice and this permission notice shall be
14+
included in all copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Diff for: README.md

+6-18
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212
[![Coverage Status](https://coveralls.io/repos/github/angular-material-extensions/input-counter/badge.svg?branch=master)](https://coveralls.io/github/angular-material-extensions/input-counter?branch=master)
1313
[![Build Status](https://travis-ci.org/angular-material-extensions/input-counter.svg?branch=master)](https://travis-ci.org/angular-material-extensions/input-counter)
1414
[![CircleCI branch](https://img.shields.io/circleci/project/github/angular-material-extensions/input-counter/master.svg?label=circleci)](https://circleci.com/gh/angular-material-extensions/input-counter)
15-
[![dependency Status](https://david-dm.org/angular-material-extensions/input-counter/status.svg)](https://david-dm.org/angular-material-extensions/input-counter)
16-
[![devDependency Status](https://david-dm.org/angular-material-extensions/input-counter/dev-status.svg?branch=master)](https://david-dm.org/angular-material-extensions/input-counter#info=devDependencies)
1715
[![Greenkeeper Badge](https://badges.greenkeeper.io/angular-material-extensions/input-counter.svg)](https://greenkeeper.io/)
1816
[![license](https://img.shields.io/github/license/angular-material-extensions/input-counter.svg?style=flat-square)](https://github.com/angular-material-extensions/input-counter/blob/master/LICENSE)
1917
[![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/gdi2290/awesome-angular)
@@ -54,24 +52,14 @@ View all the directives and components in action at [https://angular-material-ex
5452
<a name="dependencies"/>
5553

5654
## Dependencies
57-
* [Angular](https://angular.io) (*requires* Angular 2 or higher | we are using already V9 ;)
55+
* [Angular](https://angular.io) (*requires* Angular
5856

5957

6058
<a name="installation"/>
6159

6260
## [Installation](https://angular-material-extensions.github.io/input-counter/getting-started)
6361

64-
## 1. Install via *ng add*. (Recommended)
65-
66-
If Angular Material Design is not setup, just run `ng add @angular/material` [learn more](https://material.angular.io/guide/getting-started)
67-
68-
Now add the library via the `angular schematics` and everything will be setup for you
69-
```shell
70-
ng add @angular-material-extensions/input-counter
71-
```
72-
73-
74-
## 2. Install via *npm*. (Alternative)
62+
## 1. Install via *npm*.
7563

7664
Now install `@angular-material-extensions/input-counter` via:
7765
```shell
@@ -83,10 +71,10 @@ npm install --save @angular-material-extensions/input-counter
8371
### Requirements (peer dependencies):
8472

8573
for the ui input component, please consider to install the following packages
86-
- [angular animations v9.x](https://www.npmjs.com/package/@angular/animations)
87-
- [angular forms v9.x](https://www.npmjs.com/package/@angular/forms)
88-
- [angular material v9.x](https://www.npmjs.com/package/@angular/material)
89-
- [angular cdk v9.x](https://www.npmjs.com/package/@angular/cdk)
74+
- [angular animations v14.x](https://www.npmjs.com/package/@angular/animations)
75+
- [angular forms v14.x](https://www.npmjs.com/package/@angular/forms)
76+
- [angular material v14.x](https://www.npmjs.com/package/@angular/material)
77+
- [angular cdk v14.x](https://www.npmjs.com/package/@angular/cdk)
9078

9179
```bash
9280
npm i @angular/cdk @angular/material @angular/animations @angular/forms

Diff for: projects/angular-material-extensions/input-counter/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@angular-material-extensions/input-counter",
33
"description": "Modern number input component built with angular and material design",
4-
"version": "1.0.0",
4+
"version": "1.0.1",
55
"homepage": "https://angular-material-extensions.github.io/input-counter",
66
"author": {
77
"name": "Anthony Nahas",
@@ -37,7 +37,7 @@
3737
"release:patch": "../../../node_modules/.bin/release-it --patch --ci",
3838
"release:minor": "../../../node_modules/.bin/release-it --minor --ci",
3939
"release:major": "../../../node_modules/.bin/release-it --major --ci --no-git.requireCleanWorkingDir --dry-run",
40-
"release:custom": "../../../node_modules/.bin/release-it 1.0.0 --ci --no-git.requireCleanWorkingDir",
40+
"release:custom": "../../../node_modules/.bin/release-it 1.0.1 --ci --no-git.requireCleanWorkingDir",
4141
"ng:test": "../../../node_modules/.bin/ng test @angular-material-extensions/input-counter",
4242
"test": "../../../node_modules/.bin/jest --coverage",
4343
"test:watch": "../../../node_modules/.bin/jest --coverage --watch"

0 commit comments

Comments
 (0)