Skip to content

Commit

Permalink
chore(main): release 1.0.0 (#47)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Sep 10, 2024
1 parent fc2dba4 commit d06ee17
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.2.2"
".": "1.0.0"
}
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,40 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [1.0.0](https://github.com/catppuccin/highlightjs/compare/v0.2.2...v1.0.0) (2024-09-10)


### ⚠ BREAKING CHANGES

* remove `rgb()` in `catppuccin-variables.css`
* rename `catppuccin.variables.css` -> `catppuccin-variables.css`

### Features

* add `catppuccin-variables.important` for use with `!important` ([fea1b3a](https://github.com/catppuccin/highlightjs/commit/fea1b3aa5f7f1f2e6a38edf3395cf8f649859f09))
* add `catppuccin-variables.rgb.css` for use with `rgb()` ([fea1b3a](https://github.com/catppuccin/highlightjs/commit/fea1b3aa5f7f1f2e6a38edf3395cf8f649859f09))
* add `catppuccin-variables.rgb.important.css` for use with `rgb()` and `!important` ([fea1b3a](https://github.com/catppuccin/highlightjs/commit/fea1b3aa5f7f1f2e6a38edf3395cf8f649859f09))


### Bug Fixes

* **preview:** load asciidoc grammar ([#49](https://github.com/catppuccin/highlightjs/issues/49)) ([171ac95](https://github.com/catppuccin/highlightjs/commit/171ac95e3bebbd6941480f65ddaafa5c40b51dd1))
* **preview:** nix syntax highlighting ([#45](https://github.com/catppuccin/highlightjs/issues/45)) ([0e7b1e1](https://github.com/catppuccin/highlightjs/commit/0e7b1e1b554a9a68121feff1567e75744a9e36a7))
* update `comment` to `overlay2` ([327e786](https://github.com/catppuccin/highlightjs/commit/327e786242b80b568a67ddaf851b05e489fb3984))
* update `operator` to `sky` ([601c36e](https://github.com/catppuccin/highlightjs/commit/601c36e0d66996afc0b788959191b9cff2b353f4))
* update `tag` to `blue` ([601c36e](https://github.com/catppuccin/highlightjs/commit/601c36e0d66996afc0b788959191b9cff2b353f4))


### Code Refactoring

* remove `rgb()` in `catppuccin-variables.css` ([fea1b3a](https://github.com/catppuccin/highlightjs/commit/fea1b3aa5f7f1f2e6a38edf3395cf8f649859f09))
* rename `catppuccin.variables.css` -&gt; `catppuccin-variables.css` ([fea1b3a](https://github.com/catppuccin/highlightjs/commit/fea1b3aa5f7f1f2e6a38edf3395cf8f649859f09))


### Build system & distribution

* include `refactor` in CHANGELOG ([fc2dba4](https://github.com/catppuccin/highlightjs/commit/fc2dba40a8cdd81213f999928a4aea7a91280e67))

## [0.2.2](https://github.com/catppuccin/highlightjs/compare/v0.2.1...v0.2.2) (2024-05-24)


Expand Down
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,35 +62,35 @@ Embed the [Highlight.js script](https://highlightjs.org/download/) along with on
#### unpkg

```html
<link rel="stylesheet" href="//unpkg.com/@catppuccin/highlightjs@0.2.2/css/catppuccin-latte.css">
<link rel="stylesheet" href="//unpkg.com/@catppuccin/highlightjs@0.2.2/css/catppuccin-frappe.css">
<link rel="stylesheet" href="//unpkg.com/@catppuccin/highlightjs@0.2.2/css/catppuccin-macchiato.css">
<link rel="stylesheet" href="//unpkg.com/@catppuccin/highlightjs@0.2.2/css/catppuccin-mocha.css">
<link rel="stylesheet" href="//unpkg.com/@catppuccin/highlightjs@1.0.0/css/catppuccin-latte.css">
<link rel="stylesheet" href="//unpkg.com/@catppuccin/highlightjs@1.0.0/css/catppuccin-frappe.css">
<link rel="stylesheet" href="//unpkg.com/@catppuccin/highlightjs@1.0.0/css/catppuccin-macchiato.css">
<link rel="stylesheet" href="//unpkg.com/@catppuccin/highlightjs@1.0.0/css/catppuccin-mocha.css">
<!-- Variable version -->
<link rel="stylesheet" href="//unpkg.com/@catppuccin/highlightjs@0.2.2/css/catppuccin-variables.css">
<link rel="stylesheet" href="//unpkg.com/@catppuccin/highlightjs@1.0.0/css/catppuccin-variables.css">
<!-- Variable version with !important (higher specificity) -->
<link rel="stylesheet" href="//unpkg.com/@catppuccin/highlightjs@0.2.2/css/catppuccin-variables.important.css">
<link rel="stylesheet" href="//unpkg.com/@catppuccin/highlightjs@1.0.0/css/catppuccin-variables.important.css">
<!-- RGB variable version -->
<link rel="stylesheet" href="//unpkg.com/@catppuccin/highlightjs@0.2.2/css/catppuccin-variables.rgb.css">
<link rel="stylesheet" href="//unpkg.com/@catppuccin/highlightjs@1.0.0/css/catppuccin-variables.rgb.css">
<!-- RGB variable version with !important (higher specificity) -->
<link rel="stylesheet" href="//unpkg.com/@catppuccin/highlightjs@0.2.2/css/catppuccin-variables.rgb.important.css">
<link rel="stylesheet" href="//unpkg.com/@catppuccin/highlightjs@1.0.0/css/catppuccin-variables.rgb.important.css">
```

#### jsDelivr

```html
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/@catppuccin/highlightjs@0.2.2/css/catppuccin-latte.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/@catppuccin/highlightjs@0.2.2/css/catppuccin-frappe.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/@catppuccin/highlightjs@0.2.2/css/catppuccin-macchiato.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/@catppuccin/highlightjs@0.2.2/css/catppuccin-mocha.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/@catppuccin/highlightjs@1.0.0/css/catppuccin-latte.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/@catppuccin/highlightjs@1.0.0/css/catppuccin-frappe.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/@catppuccin/highlightjs@1.0.0/css/catppuccin-macchiato.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/@catppuccin/highlightjs@1.0.0/css/catppuccin-mocha.css">
<!-- Variable version -->
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/@catppuccin/highlightjs@0.2.2/css/catppuccin-variables.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/@catppuccin/highlightjs@1.0.0/css/catppuccin-variables.css">
<!-- Variable version with !important (higher specificity) -->
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/@catppuccin/highlightjs@0.2.2/css/catppuccin-variables.important.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/@catppuccin/highlightjs@1.0.0/css/catppuccin-variables.important.css">
<!-- RGB variable version -->
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/@catppuccin/highlightjs@0.2.2/css/catppuccin-variables.rgb.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/@catppuccin/highlightjs@1.0.0/css/catppuccin-variables.rgb.css">
<!-- RGB variable version with !important (higher specificity) -->
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/@catppuccin/highlightjs@0.2.2/css/catppuccin-variables.rgb.important.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/@catppuccin/highlightjs@1.0.0/css/catppuccin-variables.rgb.important.css">
```

<!-- x-release-please-end -->
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@catppuccin/highlightjs",
"version": "0.2.2",
"version": "1.0.0",
"description": "Soothing pastel theme for Highlight.js",
"repository": "https://github.com/catppuccin/highlightjs.git",
"author": "Catppuccin Org <[email protected]>",
Expand Down

0 comments on commit d06ee17

Please sign in to comment.