diff --git a/CHANGELOG.md b/CHANGELOG.md
index fec9882a..4582381d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Selectable/expandable `DataTable`
+## [0.12.3](https://github.com/IBM/carbon-components-svelte/releases/tag/v0.12.3) - 2020-09-16
+
+**Fixes**
+
+- ClickableTile: add missing `href` ([PR #254](https://github.com/IBM/carbon-components-svelte/pull/254), thanks [@josefaidt](https://github.com/josefaidt))
+
## [0.12.2](https://github.com/IBM/carbon-components-svelte/releases/tag/v0.12.2) - 2020-09-14
**Fixes**
diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md
index 040aca01..9d44ad04 100644
--- a/COMPONENT_INDEX.md
+++ b/COMPONENT_INDEX.md
@@ -566,6 +566,7 @@ import { ClickableTile } from "carbon-components-svelte";
| :-------- | :------------------- | :------------ |
| clicked | boolean
| false |
| light | boolean
| false |
+| href | string
| -- |
### Slots
diff --git a/types/index.d.ts b/types/index.d.ts
index 0a84ed43..e21a2e77 100644
--- a/types/index.d.ts
+++ b/types/index.d.ts
@@ -317,6 +317,11 @@ export class ClickableTile extends CarbonSvelteComponent {
* @default false
*/
light?: boolean;
+
+ /**
+ * Set the `href`
+ */
+ href?: string;
};
$$slot_def: { default: {} };