Skip to content

Commit 48a44d0

Browse files
authored
Release/49.0.0 (#1085)
* (release): 49.0.0 * build updates
1 parent 5013676 commit 48a44d0

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,15 @@ Run `yarn build` to build the project. The build artifacts will be stored in the
2929

3030
- Checkout master (`git checkout master`)
3131
- Pull master (`git pull`)
32-
- Refresh node modules (`npm ci`)
32+
- Refresh node modules (`yarn install --frozen-lockfile`)
3333
- Run tests (`yarn test`)
3434
- Examine log to determine next version (X.Y.Z)
3535
- Run `git checkout -b release/X.Y.Z`
3636
- Update version in `projects/swimlane/ngx-ui/package.json`.
3737
- Update changelog in `projects/swimlane/ngx-ui/CHANGELOG.md`
38+
- Run `yarn package` to build the package
3839
- Run `git commit -am "(release): X.Y.Z"`
3940
- Run `git tag X.Y.Z`
4041
- Run `git push origin HEAD --tags`
41-
- Run `npm run publish:lib`
42+
- Run `yarn publish`
4243
- Submit PR

package.json

+3-4
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
"build:schematics": "tsc -p ./projects/swimlane/ngx-ui-schematics/tsconfig.json",
1818
"build:schematics:dev": "tsc -p ./projects/swimlane/ngx-ui-schematics/tsconfig.json --watch",
1919
"copy-schematics": "cpx ./projects/swimlane/ngx-ui-schematics/src/collection.json ./dist/swimlane/ngx-ui-schematics/",
20-
"copy-files": "cpx ./README.md ./dist/swimlane/ngx-ui/ && cpx LICENSE dist/swimlane/ngx-ui/",
21-
"package": "yarn build:lib",
20+
"copy-files": "cpx ./README.md ./dist/swimlane/ngx-ui/ && cpx LICENSE dist/swimlane/ngx-ui/ && cpx ./projects/swimlane/ngx-ui/CHANGELOG.md dist/swimlane/ngx-ui/",
2221
"test": "yarn test:prettier && yarn test:lint && yarn test:unit && yarn test:integration",
2322
"test:prettier": "prettier --check \"{src,projects,cypress}/**/*.{js,ts,scss,css,md,json}\"",
2423
"test:lint": "ng lint",
@@ -30,11 +29,11 @@
3029
"watch:unit": "TZ=America/Los_Angeles ng test @swimlane/ngx-ui --watch --ts-config tsconfig.spec.json",
3130
"cypress:run": "TZ=America/Los_Angeles cypress run",
3231
"cypress:open": "TZ=America/Los_Angeles cypress open",
32+
"package": "yarn build:lib",
3333
"predeploy": "yarn build:lib && yarn build:deploy",
3434
"deploy": "angular-cli-ghpages --dir ./dist/ngx-ui --name=Swimlane [email protected]",
3535
"prepublish:lib": "yarn package",
36-
"publish:lib": "npm publish ./dist/swimlane/ngx-ui --ignore-scripts",
37-
"publish:lib:beta": "npm publish ./dist/swimlane/ngx-ui --ignore-scripts --tag beta",
36+
"publish": "npm publish ./dist/swimlane/ngx-ui --ignore-scripts",
3837
"prepack": "yarn package",
3938
"pack": "npm pack ./dist/swimlane/ngx-ui",
4039
"prepare": "husky install"

projects/swimlane/ngx-ui/CHANGELOG.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
## HEAD (unreleased)
44

5-
- Enhancement (`ngx-checkbox`): a new look is available that displays the `indeterminate` state.
5+
## 49.0.0 (2025-02-11)
6+
7+
- Enhancement (`ngx-checkbox`): a new look is available that displays `indeterminate` state.
68
- Enhancement (`ngx-checkbox`): new `@Input` named `indeterminate` set to a `boolean`.
79
- Enhancement (`ngx-checkbox`): implements an `EventEmitter` when `indeterminate` changes.
810
- Enhancement: Support Angular 19, `standalone` now required in all `@Component`
@@ -20,7 +22,7 @@ you must update your SASS to fully comply with `@use`. Below is an example of ho
2022

2123
Internally `glow` was renamed to `effects` to scale this section in the future.
2224

23-
Breaking (`ngx-time`): There could be a potential breaking change due to how `ngx-time` now uses moment-timezone internally. If you experience a behavioral change in this component, explicitly specify the timezone you wish to display.
25+
Breaking (`ngx-time`): There could be a potential breaking change due to how `ngx-time` now uses moment-timezone internally. If you experience a behavioral change in this component, explicitly specify the timezone you wish to display. If type definitions are erroring, make sure your implementation references types from moment-timezone and not moment.
2426

2527
## 48.3.0 (2024-12-17)
2628

projects/swimlane/ngx-ui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swimlane/ngx-ui",
3-
"version": "49.0.0-alpha.1",
3+
"version": "49.0.0",
44
"engines": {
55
"node": ">=18.0.0"
66
},

0 commit comments

Comments
 (0)