Skip to content

Commit

Permalink
Merge pull request #117 from microsoft/dev
Browse files Browse the repository at this point in the history
Release 1.0.2
  • Loading branch information
SilasKenneth authored Dec 1, 2023
2 parents 1c0eefa + d012946 commit c62d26d
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 7 deletions.
5 changes: 5 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,8 @@
/vendor export-ignore
.gitattributes export-ignore
.gitignore export-ignore
/.github export-ignore
/tests 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 abstractions
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.2]

### Changed
- Excluded non-prod required files and directories from released package

## [1.0.1]

### 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 Abstractions Library for PHP

[![Build Status](https://travis-ci.org/microsoft/kiota-abstractions-php.svg?branch=main)](https://travis-ci.org/microsoft/kiota-abstractions-php)
![Build Status](https://github.com/microsoft/kiota-abstractions-php/actions/workflows/pr-validation.yml/badge.svg)
[![Latest Stable Version](https://poser.pugx.org/microsoft/kiota-abstractions/version)](https://packagist.org/packages/microsoft/kiota-abstractions)
[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=microsoft_kiota-abstractions-php&metric=coverage)](https://sonarcloud.io/dashboard?id=microsoft_kiota-abstractions-php)

Expand All @@ -16,7 +16,7 @@ run `composer require microsoft/kiota-abstractions` or add the following to your
```Shell
{
"require": {
"microsoft/kiota-abstractions": "^0.1.0"
"microsoft/kiota-abstractions": "^1.0.2"
}
}
```
Expand Down
5 changes: 2 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@
},
"autoload-dev": {
"psr-4": {
"Microsoft\\Kiota\\Abstractions\\": "src/",
"Microsoft\\Kiota\\Abstractions\\Tests\\": "tests/"
"Microsoft\\Kiota\\Abstractions\\Tests\\": "tests/"
}
},
"require": {
Expand All @@ -28,7 +27,7 @@
"doctrine/annotations": "^1.13 || ^2.0",
"open-telemetry/sdk": "^1.0.0",
"ramsey/uuid": "^3 || ^4",
"stduritemplate/stduritemplate": "^0.0.46",
"stduritemplate/stduritemplate": "^0.0.48",
"psr/http-message": "^1.1 || ^2.0"
},
"require-dev": {
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 @@

final class Constants
{
public const VERSION = '1.0.1';
public const VERSION = '1.0.2';
}

0 comments on commit c62d26d

Please sign in to comment.