diff --git a/.gitattributes b/.gitattributes index 1942aa8..916ac42 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1,10 @@ * eol=lf *.{png,jpg,jpeg,gif,webp,woff,woff2} -text + +/.github export-ignore +/tests export-ignore +.gitattributes export-ignore +.gitignore export-ignore +phpstan.neon export-ignore +phpunit.xml export-ignore +sonar-project.properties export-ignore diff --git a/.github/workflows/pr-validation.yml b/.github/workflows/pr-validation.yml index 498f82d..292d771 100644 --- a/.github/workflows/pr-validation.yml +++ b/.github/workflows/pr-validation.yml @@ -1,4 +1,4 @@ -name: PHP Authentication PHPLeague +name: Build on: workflow_dispatch: diff --git a/CHANGELOG.md b/CHANGELOG.md index 62b3f71..61eb517 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +## [1.0.1] + +### Changed +- Exclude non-prod files from the shipped archive + ## [1.0.0] - 2023-11-01 ### Changed diff --git a/README.md b/README.md index fcda4c3..c33424b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Kiota Authentication Provider Library for PHP -![PHP](https://github.com/microsoft/kiota-authentication-phpleague-php/actions/workflows/pr-validation.yml/badge.svg) +![Build Status](https://github.com/microsoft/kiota-authentication-phpleague-php/actions/workflows/pr-validation.yml/badge.svg) [![Latest Stable Version](https://poser.pugx.org/microsoft/kiota-authentication-phpleague/version)](https://packagist.org/packages/microsoft/kiota-authentication-phpleague) [![Coverage](https://sonarcloud.io/api/project_badges/measure?project=microsoft_kiota-authentication-phpleague-php&metric=coverage)](https://sonarcloud.io/dashboard?id=microsoft_kiota-authentication-phpleague-php) @@ -18,7 +18,7 @@ run `composer require microsoft/kiota-authentication-phpleague` or add the follo ```Shell { "require": { - "microsoft/kiota-authentication-phpleague": "^0.1.0" + "microsoft/kiota-authentication-phpleague": "^1.0.1" } } ``` diff --git a/composer.json b/composer.json index 6c4cbbb..26814e4 100644 --- a/composer.json +++ b/composer.json @@ -13,7 +13,7 @@ "php": "^7.4 | ^8.0", "league/oauth2-client": "^2.6.1", "php-http/promise": "^1.1.0", - "microsoft/kiota-abstractions": "^1.0.0", + "microsoft/kiota-abstractions": "^1.0.2", "firebase/php-jwt": "^v6.0.0", "ramsey/uuid": "^4.2.3", "ext-openssl": "*", diff --git a/src/Constants.php b/src/Constants.php index f332d12..2de4654 100644 --- a/src/Constants.php +++ b/src/Constants.php @@ -4,5 +4,5 @@ class Constants { - public const VERSION = "1.0.0"; + public const VERSION = "1.0.1"; }