Merge pull request #555 from meilisearch/add-changelog

Add a CHANGELOG.md file
This commit is contained in:
Clément Renault 2020-03-27 19:33:39 +01:00 committed by GitHub
commit 67348f2251
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,15 @@
name: Check if the CHANGELOG.md has been updated
on: [pull_request]
jobs:
check:
name: Test on ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Checking the CHANGELOG.md has been updated in this PR
run: |
set -e
git fetch origin ${{ github.base_ref }}
git diff --name-only origin/${{ github.base_ref }} | grep -q CHANGELOG.md

5
CHANGELOG.md Normal file
View File

@ -0,0 +1,5 @@
## 0.9.1 (unreleased)
- Add the number of hits in search result (#541)
- Add support for aligned crop in search result (#543)
- Sanitize the content displayed in the web interface (#539)