Skip to content

Commit

Permalink
Merge pull request #49 from KovalM/prepare-0.6.1
Browse files Browse the repository at this point in the history
Prepare 0.6.1
  • Loading branch information
KovalM authored Apr 27, 2022
2 parents 211e69c + bb5fd48 commit 90c9605
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 11 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Release

on:
push:
tags:
- "*.*.*"

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Read changlog
id: changelog_reader
uses: mindsers/changelog-reader-action@v2
with:
version: ${{ github.ref_name }}
path: docs/changelog.md

- name: Release
uses: softprops/action-gh-release@v1
with:
body: ${{ steps.changelog_reader.outputs.changes }}
name: 'v${{ github.ref_name }}'
36 changes: 25 additions & 11 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,28 @@
## v0.7.0 - WIP
# Changelog
All notable changes to this project will be documented in this file.

- **C++**:
- Migrate test system to `gtest`
- Remove optional search triples support
- Add sanitizers
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.6.1] - 27.04.2022
### Added
- Search by template with params in C++ API
- Sanitizers
- Benchmarks
- Clang code formatting
- Common utils for C++ API

- **Build system**
- update macOS install_deps script
- Multithreaded build process used by default

- **Web**
- Moved React web interface in a separate [new repository.](https://github.com/ostis-ai/react-sc-web-ui-template)
### Changed
- Migrate test system to `gtest`
- Update macOS install_deps script
- Multithreaded build process used by default
- Move changelog to [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) format

### Removed
- Moved React web interface in a separate [new repository.](https://github.com/ostis-ai/react-sc-web-ui-template)
- Remove optional search triples support

## v0.6.0

Expand Down Expand Up @@ -170,3 +181,6 @@
* Implement ref counter for sc-elements
* Cover whole functionality of `C++` API by unit tests
* Implement `C++` API

[unreleased]: https://github.com/ostis-ai/sc-machine/compare/0.6.1...HEAD
[0.6.1]: https://github.com/ostis-ai/sc-machine/compare/0.6.0...0.6.1

0 comments on commit 90c9605

Please sign in to comment.