Skip to content

Commit

Permalink
[INTERNAL] Setup main branch for UI5 Tooling V4
Browse files Browse the repository at this point in the history
JIRA: CPOUI5FOUNDATION-775
  • Loading branch information
flovogt committed Jan 25, 2024
1 parent 3d00243 commit 207c763
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .chglog/release-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ template: RELEASE.tpl.md
info:
repository_url: https://github.com/SAP/ui5-project
options:
tag_filter_pattern: '^v[^012]' # For release notes ignore versions below v3 to that we always compare the _last v3+_ tag with the current release
tag_filter_pattern: '^v[^0123]' # For release notes ignore versions below v4 to that we always compare the _last v4+_ tag with the current release
commits:
filters:
Type:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
[![Coverage Status](https://coveralls.io/repos/github/SAP/ui5-project/badge.svg)](https://coveralls.io/github/SAP/ui5-project)

## Documentation
UI5 Project documentation can be found here: [sap.github.io/ui5-tooling](https://sap.github.io/ui5-tooling/v3/pages/Project/)
UI5 Project documentation can be found here: [sap.github.io/ui5-tooling](https://sap.github.io/ui5-tooling/v4/pages/Project/)

The UI5 Project API Reference can be found here: [`@ui5/project`](https://sap.github.io/ui5-tooling/v3/api/)
The UI5 Project API Reference can be found here: [`@ui5/project`](https://sap.github.io/ui5-tooling/v4/api/)

## Contributing
Please check our [Contribution Guidelines](https://github.com/SAP/ui5-tooling/blob/main/CONTRIBUTING.md).
Expand Down
2 changes: 1 addition & 1 deletion jsdoc.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"openGraph": {
"title": "UI5 Tooling - API Reference",
"type": "website",
"image": "https://sap.github.io/ui5-tooling/v3/images/UI5_logo_wide.png",
"image": "https://sap.github.io/ui5-tooling/v4/images/UI5_logo_wide.png",
"site_name": "UI5 Tooling - API Reference",
"url": "https://sap.github.io/ui5-tooling/"
},
Expand Down
2 changes: 1 addition & 1 deletion lib/graph/Workspace.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const log = getLogger("graph:Workspace");

/**
* Workspace configuration. For details, refer to the
* [UI5 Workspaces documentation]{@link https://sap.github.io/ui5-tooling/v3/pages/Workspace/#configuration}
* [UI5 Workspaces documentation]{@link https://sap.github.io/ui5-tooling/v4/pages/Workspace/#configuration}
*
* @public
* @typedef {object} @ui5/project/graph/Workspace~Configuration
Expand Down
2 changes: 1 addition & 1 deletion lib/specifications/types/Application.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ class Application extends ComponentProject {
`Could not find required manifest.json for project ` +
`${this.getName()}: ${manifestJsonError.message}\n\n` +
`If you are about to start a new project, please refer to:\n` +
`https://sap.github.io/ui5-tooling/v3/pages/GettingStarted/#starting-a-new-project`, {
`https://sap.github.io/ui5-tooling/v4/pages/GettingStarted/#starting-a-new-project`, {
cause: manifestJsonError
});
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"jsdoc-generate": "jsdoc -c ./jsdoc.json -t $(node -p 'path.dirname(require.resolve(\"docdash\"))') ./lib/ || (echo 'Error during JSDoc generation! Check log.' && exit 1)",
"jsdoc-watch": "npm run jsdoc && chokidar \"./lib/**/*.js\" -c \"npm run jsdoc-generate\"",
"preversion": "npm test",
"version": "git-chglog --sort semver --next-tag v$npm_package_version -o CHANGELOG.md v3.0.0.. && git add CHANGELOG.md",
"version": "git-chglog --sort semver --next-tag v$npm_package_version -o CHANGELOG.md v4.0.0.. && git add CHANGELOG.md",
"prepublishOnly": "git push --follow-tags",
"release-note": "git-chglog --sort semver -c .chglog/release-config.yml v$npm_package_version",
"depcheck": "depcheck --ignores @ui5/project,docdash,@istanbuljs/esm-loader-hook"
Expand Down
2 changes: 1 addition & 1 deletion test/lib/specifications/types/Application.js
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ test("_getNamespace: Correct error message if fallback to manifest.appdescr_vari
"No such stable or directory: manifest.json" +
"\n\n" +
"If you are about to start a new project, please refer to:\n" +
"https://sap.github.io/ui5-tooling/v3/pages/GettingStarted/#starting-a-new-project",
"https://sap.github.io/ui5-tooling/v4/pages/GettingStarted/#starting-a-new-project",
"Rejected with correct error message");

t.is(_getManifestStub.callCount, 2, "_getManifest called exactly twice");
Expand Down

0 comments on commit 207c763

Please sign in to comment.