diff --git a/docs/changelog.md b/docs/changelog.md index 180f3ad..3372639 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,11 @@ # Changelog +## v7.0.2 / v0.1.2 (sdk) - _2023-09-14_ + +### Fixes + +- Update UI repo references. + ## v7.0.1 / v0.1.2 (sdk) - _2023-09-13_ ### Fixes @@ -27,6 +33,7 @@ - See the [migration doc](migration.md) for details on how to migrate to v7 from v6. -[Unreleased changes]: https://github.com/no10ds/rapid/compare/v7.0.1...HEAD +[Unreleased changes]: https://github.com/no10ds/rapid/compare/v7.0.2...HEAD +[v7.0.2 / v0.1.1 (sdk)]: https://github.com/no10ds/rapid/v7.0.1...v7.0.2 [v7.0.1 / v0.1.1 (sdk)]: https://github.com/no10ds/rapid/v7.0.0...v7.0.1 [v7.0.0 / v0.1.1 (sdk)]: https://github.com/no10ds/rapid/v7.0.0 diff --git a/infrastructure/modules/ui/s3.tf b/infrastructure/modules/ui/s3.tf index 577ed47..9ba485f 100644 --- a/infrastructure/modules/ui/s3.tf +++ b/infrastructure/modules/ui/s3.tf @@ -52,7 +52,7 @@ resource "aws_s3_bucket_website_configuration" "rapid_ui_website" { } locals { - ui_registry_url = "https://github.com/no10ds/rapid-ui/releases/download/${var.ui_version}" + ui_registry_url = "https://github.com/no10ds/rapid/releases/download/${var.ui_version}" } resource "null_resource" "download_static_ui" { diff --git a/ui/.storybook/theme.js b/ui/.storybook/theme.js index 27cfbc8..c56d7b3 100644 --- a/ui/.storybook/theme.js +++ b/ui/.storybook/theme.js @@ -3,6 +3,6 @@ import { create } from '@storybook/theming' export default create({ base: 'light', brandTitle: 'Rapid API', - brandUrl: 'https://github.com/no10ds/rapid-ui', + brandUrl: 'https://github.com/no10ds/rapid', brandImage: 'img/logo.png' }) diff --git a/ui/Makefile b/ui/Makefile index 51abbc2..07cc983 100644 --- a/ui/Makefile +++ b/ui/Makefile @@ -2,7 +2,7 @@ IMAGE_NAME=ui-f1-registry LATEST_COMMIT_HASH=$(shell git rev-parse --short HEAD) ZIP_PATH=$(IMAGE_NAME)-$(LATEST_COMMIT_HASH) -LATEST_TAG=$(shell gh api /repos/no10ds/rapid-ui/releases/latest | jq -r ".tag_name") +LATEST_TAG=$(shell gh api /repos/no10ds/rapid/releases/latest | jq -r ".tag_name") ifeq ($(LATEST_TAG), null) TAG_NAME="$(IMAGE_NAME)-$(LATEST_COMMIT_HASH)" else