Skip to content

Commit

Permalink
Merge pull request #56 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 e95e41d + 4ee70f0 commit 4fad197
Show file tree
Hide file tree
Showing 6 changed files with 21 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 Serialization JSON
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 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 JSON Serialization Library for PHP

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

Expand All @@ -17,7 +17,7 @@ run `composer require microsoft/kiota-serialization-json` or add the following t
```Shell
{
"require": {
"microsoft/kiota-serialization-json": "^0.1.0"
"microsoft/kiota-serialization-json": "^1.0.1"
}
}
```
Expand Down
10 changes: 7 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,16 @@
"license": ["MIT"],
"autoload": {
"psr-4": {
"Microsoft\\Kiota\\Serialization\\Json\\": "src",
"Microsoft\\Kiota\\Serialization\\Tests\\": "tests"
"Microsoft\\Kiota\\Serialization\\Json\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Microsoft\\Kiota\\Serialization\\Tests\\": "tests"
}
},
"require": {
"microsoft/kiota-abstractions": "^1.0.0",
"microsoft/kiota-abstractions": "^1.0.2",
"guzzlehttp/psr7": "^1.6 || ^2",
"php": "^7.4 || ^8",
"ext-json": "*"
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.0';
public const VERSION = '1.0.1';
}

0 comments on commit 4fad197

Please sign in to comment.