Skip to content

Commit

Permalink
Merge pull request #663 from stof/prepare_release
Browse files Browse the repository at this point in the history
Prepare the 1.11.1 release
  • Loading branch information
stof committed Sep 24, 2023
2 parents d37b80e + 942515d commit ace2503
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ separated by a semi-colon.
## SCSSPHP Library Reference

To use the scssphp library either require `scss.inc.php` or use your `composer`
generated auto-loader, and then invoke the `\ScssPhp\ScssPhp\Compiler` class:
generated autoloader, and then invoke the `\ScssPhp\ScssPhp\Compiler` class:

```php
require_once "scssphp/scss.inc.php";
Expand All @@ -102,7 +102,7 @@ For a more detailed guide, [consult the documentation](docs/).

## Issues

Please submit bug reports and feature requests to the [the issue tracker][3].
Please submit bug reports and feature requests to [the issue tracker][3].
Pull requests are also welcome.

Any feature request about implementing new language feature will be rejected.
Expand Down
2 changes: 1 addition & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Site settings
title: SCSS Compiler in PHP
current_version: v1.11.0
current_version: v1.11.1
description: >
SCSS compiler written in PHP
url: https://scssphp.github.io
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ title: Documentation

### Including

The project can be loaded through the `composer` generated auto-loader.
The project can be loaded through the `composer` generated autoloader.

Alternatively, the entire project can be loaded through a utility file.
Just include it somewhere to start using it:
Expand Down
10 changes: 10 additions & 0 deletions docs/docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## **1.11.1** -- September 24, 2023

**Added**

* Add dedicated error handling when passing invalid UTF-8 (@stof)

**Fixed**

* Fix extending a selector using `:is()` (@ssltg)

## **1.11.0** -- September 2, 2022

**Deprecated**
Expand Down
2 changes: 1 addition & 1 deletion src/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@
*/
class Version
{
const VERSION = '1.11.0';
const VERSION = '1.11.1';
}

0 comments on commit ace2503

Please sign in to comment.