From 4a70dcd1d77eeb17932df5028db3beebbf88835f Mon Sep 17 00:00:00 2001 From: Daniel Deutsch Date: Thu, 7 Oct 2021 10:46:36 -0400 Subject: [PATCH] Changing version to 0.1.2 (#98) --- Changelog.md | 4 +++- repro/version.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Changelog.md b/Changelog.md index d04ffea..c22cf4f 100644 --- a/Changelog.md +++ b/Changelog.md @@ -4,7 +4,9 @@ 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 +## [v0.1.2](https://github.com/danieldeutsch/repro/releases/tag/v0.1.1) - 2021-10-07 +### Changed +- Changed backend of Lite3Pyramid to use our own fork of the official repo with some modifications. ## [v0.1.1](https://github.com/danieldeutsch/repro/releases/tag/v0.1.1) - 2021-10-05 ### Added diff --git a/repro/version.py b/repro/version.py index 6a495d0..6521b5f 100644 --- a/repro/version.py +++ b/repro/version.py @@ -1,5 +1,5 @@ _MAJOR = "0" _MINOR = "1" -_PATCH = "1" +_PATCH = "2" VERSION = f"{_MAJOR}.{_MINOR}.{_PATCH}"