From 28b5a1e432e1b01dc71214549906e3cea15068f6 Mon Sep 17 00:00:00 2001 From: Ethan Harris Date: Tue, 8 Jun 2021 14:15:21 +0100 Subject: [PATCH] Update CHANGELOG and bump version to 0.3.1 (#378) --- CHANGELOG.md | 3 ++- flash/__about__.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 996fe9519f..f3d18aa235 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). -## [0.3.1] - YYYY-MM-DD +## [0.3.1] - 2021-06-08 ### Added @@ -26,6 +26,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). - Fixed `flash.Trainer.add_argparse_args` not adding any arguments ([#343](https://github.com/PyTorchLightning/lightning-flash/pull/343)) - Fixed a bug where using `val_split` with `overfit_batches` would give an infinite recursion ([#375](https://github.com/PyTorchLightning/lightning-flash/pull/375)) +- Fixed a bug where some timm models were mistakenly given a `global_pool` argument ([#376](https://github.com/PyTorchLightning/lightning-flash/pull/376)) ## [0.3.0] - 2021-05-20 diff --git a/flash/__about__.py b/flash/__about__.py index 5dfa47bba9..6d2cebac66 100644 --- a/flash/__about__.py +++ b/flash/__about__.py @@ -1,4 +1,4 @@ -__version__ = "0.3.1rc0" +__version__ = "0.3.1" __author__ = "PyTorchLightning et al." __author_email__ = "name@pytorchlightning.ai" __license__ = 'Apache-2.0'