Skip to content

Commit

Permalink
commit bugfix release 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
llaville committed Nov 5, 2024
1 parent 0a24060 commit 35a2bc3
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 4 deletions.
14 changes: 14 additions & 0 deletions .changes/2.x/2.0.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@

## 2.0.1 - 2024-11-05

> [!WARNING]
>
> This version is the last one to support PHP 7.4 and PHP 8.0
>
> Next feature version 2.1.0 will only support PHP 8.1 or greater !
### Changed

- provides full support to PHP 8.4 (without deprecation messages)

**Full Changelog**: [2.0.0...2.0.1](https://github.com/llaville/sarif-php-sdk/compare/2.0.0...2.0.1)
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
and is generated by [Changie](https://github.com/miniscruff/changie).

## 2.0.1 - 2024-11-05

> [!WARNING]
>
> This version is the last one to support PHP 7.4 and PHP 8.0
>
> Next feature version 2.1.0 will only support PHP 8.1 or greater !
### Changed

- provides full support to PHP 8.4 (without deprecation messages)

**Full Changelog**: [2.0.0...2.0.1](https://github.com/llaville/sarif-php-sdk/compare/2.0.0...2.0.1)

## 2.0.0 - 2024-07-02

> [!IMPORTANT]
Expand Down
6 changes: 3 additions & 3 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ You can also install application locally to your project with [Phive][phive] and
```xml
<?xml version="1.0" encoding="UTF-8"?>
<phive xmlns="https://phar.io/phive">
<phar name="llaville/sarif-php-sdk" version="^1.3" copy="false" />
<phar name="llaville/sarif-php-sdk" version="^2.0" copy="false" />
</phive>
```

Expand All @@ -59,7 +59,7 @@ The recommended way to install this library is [through composer][composer].
If you don't know yet what is composer, have a look [on introduction][composer-intro].

```shell
composer require bartlett/sarif-php-sdk ^1.3
composer require bartlett/sarif-php-sdk ^2.0
```

If you cannot install it because of a dependency conflict, or you prefer to install it for your project, we recommend
Expand All @@ -75,7 +75,7 @@ composer bin sarif-php-sdk require --dev bartlett/sarif-php-sdk
The SARIF PHP SDK can be directly used from [GitHub][github-repo] by cloning the repository into a directory of your choice.

```shell
git clone -b 1.3 https://github.com/llaville/sarif-php-sdk.git
git clone -b 2.0 https://github.com/llaville/sarif-php-sdk.git
```

[releases]: https://github.com/llaville/sarif-php-sdk/releases/
Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
site_name: Sarif PHP SDK
site_url: https://llaville.github.io/sarif-php-sdk
site_url: https://llaville.github.io/sarif-php-sdk/2.0
repo_url: https://github.com/llaville/sarif-php-sdk # https://squidfunk.github.io/mkdocs-material/setup/adding-a-git-repository/#repository
site_author: Laurent Laville
edit_uri: "" # hide edit button -- https://squidfunk.github.io/mkdocs-material/setup/adding-a-git-repository/#edit-button
Expand Down

0 comments on commit 35a2bc3

Please sign in to comment.