Skip to content

Commit

Permalink
Prepare the 1.13.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
stof committed Aug 17, 2024
1 parent b305afe commit af28b28
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
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.12.1
current_version: v1.13.0
description: >
SCSS compiler written in PHP
url: https://scssphp.github.io
Expand Down
1 change: 1 addition & 0 deletions docs/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ SCSS code. If it succeeds, a `\ScssPhp\ScssPhp\CompilationResult` containing the
CSS will be returned. If there is any error, a
`\ScssPhp\ScssPhp\Exception\SassException` is thrown with an appropriate error
message.

`compileFile($path)` will attempt to compile a SCSS file from the provided path. If
it succeeds, a `\ScssPhp\ScssPhp\CompilationResult` containing the CSS will be
returned. If there is any error, a `\ScssPhp\ScssPhp\Exception\SassException` is
Expand Down
6 changes: 6 additions & 0 deletions docs/docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## **1.13.0** -- August 17, 2024

**Deprecated**

* Deprecate registering a custom function with a callable expecting 2 arguments (@stof)

## **1.12.1** -- January 13, 2024

**Fixed**
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.12.1';
const VERSION = '1.13.0';
}

0 comments on commit af28b28

Please sign in to comment.