Skip to content

Commit

Permalink
Version Packages (#554)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
primer-css and github-actions[bot] authored Apr 4, 2024
1 parent 1ad2da2 commit 7f14d05
Show file tree
Hide file tree
Showing 15 changed files with 69 additions and 62 deletions.
5 changes: 0 additions & 5 deletions .changeset/cool-knives-mix.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sharp-walls-knock.md

This file was deleted.

46 changes: 0 additions & 46 deletions .changeset/soft-buckets-help.md

This file was deleted.

2 changes: 2 additions & 0 deletions apps/storybook/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @primer/brand-storybook

## 0.32.0

## 0.31.0

## 0.30.3
Expand Down
2 changes: 1 addition & 1 deletion apps/storybook/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@primer/brand-storybook",
"version": "0.31.0",
"version": "0.32.0",
"private": true,
"description": "Primer Brand Storybook",
"keywords": [
Expand Down
2 changes: 2 additions & 0 deletions packages/design-tokens/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @primer/brand-primitives

## 0.32.0

## 0.31.0

## 0.30.3
Expand Down
2 changes: 1 addition & 1 deletion packages/design-tokens/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@primer/brand-primitives",
"version": "0.31.0",
"version": "0.32.0",
"description": "Color, spacing, and typography primitives for the Primer Brand Design System ",
"keywords": [
"primer",
Expand Down
2 changes: 2 additions & 0 deletions packages/e2e/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @primer/brand-e2e

## 0.32.0

## 0.31.0

## 0.30.3
Expand Down
2 changes: 1 addition & 1 deletion packages/e2e/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@primer/brand-e2e",
"version": "0.31.0",
"version": "0.32.0",
"private": true,
"description": "Primer Brand is a GitHub's design system for creating React-based marketing websites and digital experiences.",
"keywords": [
Expand Down
2 changes: 2 additions & 0 deletions packages/fonts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @primer/brand-fonts

## 0.32.0

## 0.31.0

## 0.30.3
Expand Down
2 changes: 1 addition & 1 deletion packages/fonts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@primer/brand-fonts",
"version": "0.31.0",
"version": "0.32.0",
"private": true,
"description": "Primer Brand is a GitHub's design system for creating React-based marketing websites and digital experiences.",
"keywords": [
Expand Down
53 changes: 53 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,58 @@
# @primer/react-brand

## 0.32.0

### Minor Changes

- [#530](https://github.com/primer/brand/pull/530) [`a9f0c1a`](https://github.com/primer/brand/commit/a9f0c1a034060e56ac00966792dd50a85fd2a0b8) Thanks [@danielguillan](https://github.com/danielguillan)! - New pricing options component now generally available

```jsx
<PricingOptions>
<PricingOptions.Item>
<PricingOptions.Label>Recommended</PricingOptions.Label>
<PricingOptions.Heading>Copilot</PricingOptions.Heading>
<PricingOptions.Description>Copilot in the coding environment.</PricingOptions.Description>
<PricingOptions.Price currencySymbol="$" trailingText="per month / $100 per year">
10
</PricingOptions.Price>
<PricingOptions.FeatureList>
<PricingOptions.FeatureListItem>Everything in Copilot Business plus:</PricingOptions.FeatureListItem>
<PricingOptions.FeatureListItem>Chat in IDE and Mobile</PricingOptions.FeatureListItem>
<PricingOptions.FeatureListItem>CLI assistance</PricingOptions.FeatureListItem>
<PricingOptions.FeatureListItem>Code completions</PricingOptions.FeatureListItem>
</PricingOptions.FeatureList>
<PricingOptions.PrimaryAction href="/buy">Buy now</PricingOptions.PrimaryAction>
<PricingOptions.SecondaryAction href="/contact">Contact sales</PricingOptions.SecondaryAction>
</PricingOptions.Item>
<PricingOptions.Item>
<PricingOptions.Label>Recommended</PricingOptions.Label>
<PricingOptions.Heading>Copilot Business</PricingOptions.Heading>
<PricingOptions.Description>
Copilot personalized to your organization throughout the software development lifecycle. Requires GitHub
Enterprise Cloud.
</PricingOptions.Description>
<PricingOptions.Price currencySymbol="$" trailingText="per user / month">
39
</PricingOptions.Price>
<PricingOptions.FeatureList>
<PricingOptions.FeatureListItem>Everything in Copilot Business plus:</PricingOptions.FeatureListItem>
<PricingOptions.FeatureListItem>Chat in IDE and Mobile</PricingOptions.FeatureListItem>
<PricingOptions.FeatureListItem>CLI assistance</PricingOptions.FeatureListItem>
<PricingOptions.FeatureListItem>Code completions</PricingOptions.FeatureListItem>
</PricingOptions.FeatureList>
<PricingOptions.PrimaryAction href="/waitlist">Join waitlist</PricingOptions.PrimaryAction>
</PricingOptions.Item>
</PricingOptions>
```

:link: [Read the documentation for more examples](https://primer.style/brand/components/PricingOptions)

### Patch Changes

- [#553](https://github.com/primer/brand/pull/553) [`0fb9052`](https://github.com/primer/brand/commit/0fb90529ac532167a43f6eeac2a904c9922325fc) Thanks [@rezrah](https://github.com/rezrah)! - Use default text color in labels that feature gradients

- [#560](https://github.com/primer/brand/pull/560) [`9b150a7`](https://github.com/primer/brand/commit/9b150a7695c1b2e70afab901550b1cc91f742bcb) Thanks [@rezrah](https://github.com/rezrah)! - Removed redundant spacing on SubNav menu toggle button

## 0.31.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@primer/react-brand",
"version": "0.31.0",
"version": "0.32.0",
"description": "Primer Brand is a GitHub's design system for creating React-based marketing websites and digital experiences.",
"keywords": [
"primer",
Expand Down
2 changes: 2 additions & 0 deletions packages/repo-configs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @primer/brand-config

## 0.32.0

## 0.31.0

## 0.30.3
Expand Down
2 changes: 1 addition & 1 deletion packages/repo-configs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@primer/brand-config",
"version": "0.31.0",
"version": "0.32.0",
"private": true,
"description": "General-purpose configurations for maintaining Primer Brand",
"homepage": "https://primer.style/brand",
Expand Down

0 comments on commit 7f14d05

Please sign in to comment.