From db511199f704a0e081289c17c7ef65b09b1bd0f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20tom=20W=C3=B6rden?= <henrik@trineo.org> Date: Mon, 6 Dec 2021 18:20:19 +0100 Subject: [PATCH] REL: prepare release --- CHANGELOG.md | 12 +----------- setup.py | 2 +- 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 76f8350e..c5c1ba85 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](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] ## +## [0.3.1] - 2021-12-06 ## ### Added ### - `check_reference_field` function to check whether entities with provided ids @@ -12,16 +12,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - added the `datatypes` argument to `TableImporter` for columns that do not need a special conversion function -### Changed ### - -### Deprecated ### - -### Removed ### - -### Fixed ### - -### Security ### - ## [0.3.0] - 2021-11-02 ## ### Added ### diff --git a/setup.py b/setup.py index 81695d77..78040b9c 100755 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ MAJOR = 0 MINOR = 3 MICRO = 1 PRE = "" # e.g. rc0, alpha.1, 0.beta-23 -ISRELEASED = False +ISRELEASED = True if PRE: VERSION = "{}.{}.{}-{}".format(MAJOR, MINOR, MICRO, PRE) -- GitLab