diff --git a/.changeset/thirty-experts-return.md b/.changeset/thirty-experts-return.md deleted file mode 100644 index 83ae829e38..0000000000 --- a/.changeset/thirty-experts-return.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@primer/view-components": patch ---- - -Fix Beta::Button visual regressions -- Add back link styles -- Ensure invisible buttons are blue when no visuals are present diff --git a/.changeset/tough-pumas-flash.md b/.changeset/tough-pumas-flash.md deleted file mode 100644 index 5d90046a8d..0000000000 --- a/.changeset/tough-pumas-flash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@primer/view-components': patch ---- - -Add SVG and custom content options to NavList's leading visual slot diff --git a/CHANGELOG.md b/CHANGELOG.md index dc8e40ec3f..ec2e1573f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # CHANGELOG +## 0.0.99 + +### Patch Changes + +- [#1421](https://github.com/primer/view_components/pull/1421) [`c35a5c32`](https://github.com/primer/view_components/commit/c35a5c3226ab39aa62182ee4816e63d9c1d0c598) Thanks [@langermank](https://github.com/langermank)! - Fix Beta::Button visual regressions + - Add back link styles + - Ensure invisible buttons are blue when no visuals are present + +* [#1422](https://github.com/primer/view_components/pull/1422) [`a129a4d1`](https://github.com/primer/view_components/commit/a129a4d1b7d1dfae6d2d623e1603ea6e75533940) Thanks [@camertron](https://github.com/camertron)! - Add SVG and custom content options to NavList's leading visual slot + ## 0.0.98 ### Patch Changes diff --git a/Gemfile.lock b/Gemfile.lock index c2cf1c7ddd..6d40930b5e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - primer_view_components (0.0.98) + primer_view_components (0.0.99) actionview (>= 5.0.0) activesupport (>= 5.0.0) octicons (>= 17.0.0) diff --git a/demo/Gemfile.lock b/demo/Gemfile.lock index b822c65cdf..1a45369f3a 100644 --- a/demo/Gemfile.lock +++ b/demo/Gemfile.lock @@ -20,7 +20,7 @@ GIT PATH remote: .. specs: - primer_view_components (0.0.98) + primer_view_components (0.0.99) actionview (>= 5.0.0) activesupport (>= 5.0.0) octicons (>= 17.0.0) diff --git a/lib/primer/view_components/version.rb b/lib/primer/view_components/version.rb index 0666854950..6844e88751 100644 --- a/lib/primer/view_components/version.rb +++ b/lib/primer/view_components/version.rb @@ -5,7 +5,7 @@ module ViewComponents module VERSION MAJOR = 0 MINOR = 0 - PATCH = 98 + PATCH = 99 STRING = [MAJOR, MINOR, PATCH].join(".") end diff --git a/package.json b/package.json index 3ab7696a21..feba231a76 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@primer/view-components", - "version": "0.0.98", + "version": "0.0.99", "description": "ViewComponents for the Primer Design System", "main": "app/assets/javascripts/primer_view_components.js", "module": "app/components/primer/primer.js",