From aad180ad0d572cbc235ceb143e4b6401e6acce28 Mon Sep 17 00:00:00 2001 From: Florian Vogt Date: Wed, 24 Jan 2024 14:54:52 +0100 Subject: [PATCH] [INTERNAL] Setup main for UI5 Tooling V4 JIRA: CPOUI5FOUNDATION-775 --- .chglog/release-config.yml | 2 +- README.md | 4 ++-- jsdoc.json | 2 +- package.json | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.chglog/release-config.yml b/.chglog/release-config.yml index a29d12c8..a43eed9d 100755 --- a/.chglog/release-config.yml +++ b/.chglog/release-config.yml @@ -3,7 +3,7 @@ template: RELEASE.tpl.md info: repository_url: https://github.com/SAP/ui5-fs 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: diff --git a/README.md b/README.md index 6a08a9cf..2b27841f 100644 --- a/README.md +++ b/README.md @@ -10,9 +10,9 @@ [![Coverage Status](https://coveralls.io/repos/github/SAP/ui5-fs/badge.svg)](https://coveralls.io/github/SAP/ui5-fs) ## Documentation -UI5 FS documentation can be found here: [sap.github.io/ui5-tooling](https://sap.github.io/ui5-tooling/v3/pages/FileSystem/) +UI5 FS documentation can be found here: [sap.github.io/ui5-tooling](https://sap.github.io/ui5-tooling/v4/pages/FileSystem/) -The UI5 FS API Reference can be found here: [`@ui5/fs`](https://sap.github.io/ui5-tooling/v3/api/) +The UI5 FS API Reference can be found here: [`@ui5/fs`](https://sap.github.io/ui5-tooling/v4/api/) ## Contributing Please check our [Contribution Guidelines](https://github.com/SAP/ui5-tooling/blob/main/CONTRIBUTING.md). diff --git a/jsdoc.json b/jsdoc.json index 1196428f..8deb0904 100644 --- a/jsdoc.json +++ b/jsdoc.json @@ -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/" }, diff --git a/package.json b/package.json index fb358943..55ad58ef 100644 --- a/package.json +++ b/package.json @@ -50,7 +50,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/fs,docdash,@istanbuljs/esm-loader-hook"