Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
arawinters committed May 6, 2022
1 parent 2d540dd commit 89e6b5a
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
[markdownlint](https://dlaa.me/markdownlint/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [4.0.0] - 2022-3-15
## [4.0.0] - 2022-05-09

This update brings the models in line with the changes for the `3.0.0` release of the [senzing rest api server](https://github.com/Senzing/senzing-api-server)
and [rest api specification](https://github.com/Senzing/senzing-rest-api-specification/blob/caceres.version-3.0.0/senzing-rest-api.yaml).
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@senzing/sdk-components-ng",
"version": "4.0.0-beta.9",
"version": "4.0.0",
"scripts": {
"ng": "ng",
"start": "ng build @senzing/sdk-components-ng && ng serve",
Expand Down Expand Up @@ -63,7 +63,7 @@
"@angular/platform-browser-dynamic": "~13.2.0",
"@angular/router": "~13.2.0",
"@senzing/rest-api-client-ng": "^4.0.0",
"@senzing/sdk-graph-components": "^4.1.0-beta.2",
"@senzing/sdk-graph-components": "^4.1.0",
"acorn": "^8.6.0",
"ajv": "^6.12.6",
"d3": "^5.9.1",
Expand Down
2 changes: 1 addition & 1 deletion sdk-components-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@senzing/sdk-components-web",
"version": "3.0.0",
"version": "4.0.0",
"private": false,
"keywords" :["WebComponent","Library","Senzing"],
"license" : "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@senzing/sdk-components-ng",
"version": "4.0.0-beta.9",
"version": "4.0.0",
"private": false,
"keywords" :["Angular","Library","Senzing"],
"license" : "SEE LICENSE IN LICENSE",
Expand Down
6 changes: 3 additions & 3 deletions src/schematics/ng-add/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import {
function addPackageJsonDependencies(): Rule {
return (host: Tree, context: SchematicContext) => {
const dependencies: NodeDependency[] = [
{ type: NodeDependencyType.Default, version: '~3.0.0', name: '@senzing/rest-api-client-ng' },
{ type: NodeDependencyType.Default, version: '~3.0.0', name: '@senzing/sdk-graph-components' },
{ type: NodeDependencyType.Default, version: '~3.0.0', name: '@senzing/sdk-components-ng' }
{ type: NodeDependencyType.Default, version: '~4.0.0', name: '@senzing/rest-api-client-ng' },
{ type: NodeDependencyType.Default, version: '~4.1.0', name: '@senzing/sdk-graph-components' },
{ type: NodeDependencyType.Default, version: '~4.0.0', name: '@senzing/sdk-components-ng' }
];

dependencies.forEach(dependency => {
Expand Down

0 comments on commit 89e6b5a

Please sign in to comment.