Skip to content

Commit

Permalink
Merge pull request #65 from microsoft/dev
Browse files Browse the repository at this point in the history
Release 1.0.1
  • Loading branch information
Ndiritu authored Dec 1, 2023
2 parents d7281d9 + f991250 commit 115d976
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 5 deletions.
8 changes: 8 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion .github/workflows/pr-validation.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: PHP Authentication PHPLeague
name: Build

on:
workflow_dispatch:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)

Expand All @@ -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"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": "*",
Expand Down
2 changes: 1 addition & 1 deletion src/Constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@

class Constants
{
public const VERSION = "1.0.0";
public const VERSION = "1.0.1";
}

0 comments on commit 115d976

Please sign in to comment.