From 7e53d19a61d770aa72bdc74e60fe72bb6c27de56 Mon Sep 17 00:00:00 2001 From: Daniel Deutsch Date: Fri, 26 Mar 2021 10:14:59 -0400 Subject: [PATCH] Updating to version 0.2.0 (#88) --- CHANGELOG.md | 2 ++ sacrerouge/version.py | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 21fab52..3e51f19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ 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 + +## [v0.2.0](https://github.com/danieldeutsch/sacrerouge/releases/tag/0.2.0) - 2021-03-26 ### Added - Added the annotations collected by [Bhandari et al., (2020)](https://www.aclweb.org/anthology/2020.emnlp-main.751/). - Added [BLANC](https://github.com/PrimerAI/blanc) diff --git a/sacrerouge/version.py b/sacrerouge/version.py index 422d919..834a018 100644 --- a/sacrerouge/version.py +++ b/sacrerouge/version.py @@ -1,5 +1,5 @@ _MAJOR = '0' -_MINOR = '1' -_PATCH = '5' +_MINOR = '2' +_PATCH = '0' VERSION = f'{_MAJOR}.{_MINOR}.{_PATCH}'