Skip to content

Commit

Permalink
Merge pull request #152 from microsoft/dev
Browse files Browse the repository at this point in the history
Release 1.4.0
  • Loading branch information
SilasKenneth authored May 30, 2024
2 parents 951eb57 + 081a82a commit b911a9c
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/policies/resourceManagement.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ configuration:
- isIssue
- isOpen
- hasLabel:
label: 'Needs: Author Feedback'
label: 'status:waiting-for-author-feedback'
- hasLabel:
label: 'Status: No Recent Activity'
- noActivitySince:
Expand All @@ -31,7 +31,7 @@ configuration:
- isIssue
- isOpen
- hasLabel:
label: 'Needs: Author Feedback'
label: 'status:waiting-for-author-feedback'
- noActivitySince:
days: 4
- isNotLabeledWith:
Expand Down Expand Up @@ -64,13 +64,13 @@ configuration:
- isActivitySender:
issueAuthor: True
- hasLabel:
label: 'Needs: Author Feedback'
label: 'status:waiting-for-author-feedback'
- isOpen
then:
- addLabel:
label: 'Needs: Attention :wave:'
- removeLabel:
label: 'Needs: Author Feedback'
label: 'status:waiting-for-author-feedback'
description:
- if:
- payloadType: Issues
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

## [1.4.0]

### Added
- Add interface for ComposedTypeWrapper for marking composed types.

### Changed

## [1.3.1]

### Added
Expand Down
1 change: 1 addition & 0 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ Resources:
- [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/)
- [Microsoft Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/)
- Contact [[email protected]](mailto:[email protected]) with questions or concerns
- Employees can reach out at [aka.ms/opensource/moderation-support](https://aka.ms/opensource/moderation-support)
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ run `composer require microsoft/kiota-abstractions` or add the following to your
```Shell
{
"require": {
"microsoft/kiota-abstractions": "^1.3.1"
"microsoft/kiota-abstractions": "^1.4.0"
}
}
```
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.3.1';
public const VERSION = '1.4.0';
}
9 changes: 9 additions & 0 deletions src/Serialization/ComposedTypeWrapper.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?php

namespace Microsoft\Kiota\Abstractions\Serialization;


/**
* The wrapper type for composed types.
*/
interface ComposedTypeWrapper {}

0 comments on commit b911a9c

Please sign in to comment.