diff --git a/.changeset/eight-rockets-brush.md b/.changeset/eight-rockets-brush.md deleted file mode 100644 index 04759da7e1..0000000000 --- a/.changeset/eight-rockets-brush.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@primer/view-components': patch ---- - -Modify merge_aria to combine plural attributes; introduce merge_data diff --git a/.changeset/fresh-mails-smash.md b/.changeset/fresh-mails-smash.md deleted file mode 100644 index 218f1ff136..0000000000 --- a/.changeset/fresh-mails-smash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@primer/view-components': patch ---- - -Update Primer::Alpha::TextInput to support multiple target attributes diff --git a/.changeset/gorgeous-zoos-exercise.md b/.changeset/gorgeous-zoos-exercise.md deleted file mode 100644 index f51f0986a7..0000000000 --- a/.changeset/gorgeous-zoos-exercise.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@primer/view-components': patch ---- - -ActionList item and divider content diff --git a/.changeset/poor-lizards-clean.md b/.changeset/poor-lizards-clean.md deleted file mode 100644 index 16971e6856..0000000000 --- a/.changeset/poor-lizards-clean.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@primer/view-components': patch ---- - -Associate title with dialog diff --git a/.changeset/rotten-fireants-laugh.md b/.changeset/rotten-fireants-laugh.md deleted file mode 100644 index 01c4acb303..0000000000 --- a/.changeset/rotten-fireants-laugh.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@primer/view-components": patch ---- - -Bug fix: ActionList `danger` variant hover/active contrast diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bd0cbdd9b..15bcc49999 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # CHANGELOG +## 0.1.3 + +### Patch Changes + +- [#1895](https://github.com/primer/view_components/pull/1895) [`e53f1995`](https://github.com/primer/view_components/commit/e53f1995e6b97a92169479255196c1eec07cbd1f) Thanks [@camertron](https://github.com/camertron)! - Modify merge_aria to combine plural attributes; introduce merge_data + +* [#1894](https://github.com/primer/view_components/pull/1894) [`5d118b0a`](https://github.com/primer/view_components/commit/5d118b0ae8b10429801f12f8c08e9aaf4895dbab) Thanks [@mikekavouras](https://github.com/mikekavouras)! - Update Primer::Alpha::TextInput to support multiple target attributes + +- [#1887](https://github.com/primer/view_components/pull/1887) [`9cc2f5bf`](https://github.com/primer/view_components/commit/9cc2f5bf3a59e7c97ca44b4b17da7c849bda5e2a) Thanks [@camertron](https://github.com/camertron)! - ActionList item and divider content + +* [#1891](https://github.com/primer/view_components/pull/1891) [`5f48d6f8`](https://github.com/primer/view_components/commit/5f48d6f83d0aa5b82ca3a764161cfafae9de8fe5) Thanks [@camertron](https://github.com/camertron)! - Associate title with dialog + +- [#1889](https://github.com/primer/view_components/pull/1889) [`dd1d382d`](https://github.com/primer/view_components/commit/dd1d382d52abaff1edadb64cd4eef89515c17184) Thanks [@langermank](https://github.com/langermank)! - Bug fix: ActionList `danger` variant hover/active contrast + ## 0.1.2 ### Patch Changes diff --git a/Gemfile.lock b/Gemfile.lock index 7be78f462c..17886b0d53 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - primer_view_components (0.1.2) + primer_view_components (0.1.3) actionview (>= 5.0.0) activesupport (>= 5.0.0) octicons (>= 18.0.0) diff --git a/demo/Gemfile.lock b/demo/Gemfile.lock index cfcfcbb719..029009054a 100644 --- a/demo/Gemfile.lock +++ b/demo/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: .. specs: - primer_view_components (0.1.2) + primer_view_components (0.1.3) actionview (>= 5.0.0) activesupport (>= 5.0.0) octicons (>= 18.0.0) diff --git a/lib/primer/view_components/version.rb b/lib/primer/view_components/version.rb index 7bf9a7c80b..ded801d1c4 100644 --- a/lib/primer/view_components/version.rb +++ b/lib/primer/view_components/version.rb @@ -6,7 +6,7 @@ module ViewComponents module VERSION MAJOR = 0 MINOR = 1 - PATCH = 2 + PATCH = 3 STRING = [MAJOR, MINOR, PATCH].join(".") end diff --git a/package-lock.json b/package-lock.json index 91c3a8c490..e8a60a72ee 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@primer/view-components", - "version": "0.1.2", + "version": "0.1.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@primer/view-components", - "version": "0.1.2", + "version": "0.1.3", "license": "MIT", "dependencies": { "@github/auto-check-element": "^5.2.0", diff --git a/package.json b/package.json index b0fc647d0d..3324a97809 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@primer/view-components", - "version": "0.1.2", + "version": "0.1.3", "description": "ViewComponents for the Primer Design System", "main": "app/assets/javascripts/primer_view_components.js", "module": "app/components/primer/primer.js",