Skip to content

Commit f84e10f

Browse files
authored
Merge pull request #4 from OS2Forms/release/1.1.0
Release 1.1.0
2 parents 5cacdbe + 946c7a2 commit f84e10f

File tree

3 files changed

+42
-1
lines changed

3 files changed

+42
-1
lines changed

.github/workflows/pr.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
on: pull_request
22
name: PR Review
33
jobs:
4+
changelog:
5+
runs-on: ubuntu-latest
6+
name: Changelog should be updated
7+
strategy:
8+
fail-fast: false
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v2
12+
with:
13+
fetch-depth: 2
14+
15+
- name: Git fetch
16+
run: git fetch
17+
18+
- name: Check that changelog has been updated.
19+
run: git diff --exit-code origin/${{ github.base_ref }} -- CHANGELOG.md && exit 1 || exit 0
20+
421
test-composer-files:
522
name: Validate composer
623
runs-on: ubuntu-latest

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!-- markdownlint-disable MD024 -->
2+
# Changelog
3+
4+
All notable changes to this project will be documented in this file.
5+
6+
See [keep a changelog](https://keepachangelog.com/en/1.0.0/) for information
7+
about writing changes to this log.
8+
9+
## [Unreleased]
10+
11+
## [1.1.0]
12+
13+
### Added
14+
15+
- Added attachments data
16+
- Added linked data
17+
18+
## [1.0.0]
19+
20+
- Release 1.0.0
21+
22+
[Unreleased]: https://github.com/OS2Forms/os2forms_rest_api/compare/1.1.0...HEAD
23+
[1.1.0]: https://github.com/OS2Forms/os2forms_rest_api/compare/1.0.0...1.1.0
24+
[1.0.0]: https://github.com/OS2Forms/os2forms_rest_api//releases/tag/1.0.0

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"enable-patching": true,
5959
"patches": {
6060
"drupal/webform_rest": {
61-
"Added ability to modify response data sent from Webform Submission endpoint": "https://raw.githubusercontent.com/itk-dev/os2forms_rest_api/feature/linked-data/patches/webform_rest_submission.patch"
61+
"Added ability to modify response data sent from Webform Submission endpoint": "https://raw.githubusercontent.com/OS2Forms/os2forms_rest_api/1.1.0/patches/webform_rest_submission.patch"
6262
}
6363
}
6464
}

0 commit comments

Comments
 (0)