Skip to content

Commit d531173

Browse files
committed
fix(buttons): update migration version + add changelog entry
1 parent 082bcec commit d531173

File tree

5 files changed

+16
-5
lines changed

5 files changed

+16
-5
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
All notable changes for each version of this project will be documented in this file.
44

5+
## 21.0.0
6+
7+
### Themes
8+
9+
- `IgxButton`
10+
- **Breaking Change**
11+
- The following shadow-related parameters were removed from the `outlined-button-theme` and `flat-button-theme`:
12+
- `resting-shadow`
13+
- `hover-shadow`
14+
- `focus-shadow`
15+
- `active-shadow`
516

617
## 20.1.0
718

projects/igniteui-angular/migrations/migration-collection.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -248,9 +248,9 @@
248248
"factory": "./update-20_1_0"
249249
},
250250
"migration-50": {
251-
"version": "20.2.0",
252-
"description": "Updates Ignite UI for Angular from v20.1.0 to v20.2.0",
253-
"factory": "./update-20_2_0"
251+
"version": "21.0.0",
252+
"description": "Updates Ignite UI for Angular from v20.1.0 to v21.0.0",
253+
"factory": "./update-21_0_0"
254254
}
255255
}
256256
}

projects/igniteui-angular/migrations/update-20_2_0/changes/theme-changes.json renamed to projects/igniteui-angular/migrations/update-21_0_0/changes/theme-changes.json

File renamed without changes.

projects/igniteui-angular/migrations/update-20_2_0/index.spec.ts renamed to projects/igniteui-angular/migrations/update-21_0_0/index.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import * as path from 'path';
33
import { SchematicTestRunner, UnitTestTree } from '@angular-devkit/schematics/testing';
44
import { setupTestTree } from '../common/setup.spec';
55

6-
const version = '20.2.0';
6+
const version = '21.0.0';
77

88
describe(`Update to ${version}`, () => {
99
let appTree: UnitTestTree;

projects/igniteui-angular/migrations/update-20_2_0/index.ts renamed to projects/igniteui-angular/migrations/update-21_0_0/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import type {
55
} from '@angular-devkit/schematics';
66
import { UpdateChanges } from '../common/UpdateChanges';
77

8-
const version = '20.2.0';
8+
const version = '21.0.0';
99

1010
export default (): Rule => async (host: Tree, context: SchematicContext) => {
1111
context.logger.info(`Applying migration for Ignite UI for Angular to version ${version}`);

0 commit comments

Comments
 (0)