From 0fdcbeb0ff42a19415542c19dce38a97158991d3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 9 Dec 2021 13:42:12 -0600 Subject: [PATCH] Release version 3.17.0 (#28) --- CHANGELOG.md | 8 ++++++++ Dockerfile | 2 +- LICENSE | 2 +- pyproject.toml | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5bd6398..b8e94a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ 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). +## 3.17.0 - 2021-12-09 + +- Add Redis caching support + +## 3.16.1 - 2021-11-16 + +- Fix repl dependencies + ## 3.16.0 - 2021-11-10 - GitLab beta support diff --git a/Dockerfile b/Dockerfile index caed901..f175fe6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM python:3 -RUN pip install -U pip && pip install pullapprove==3.16.1 +RUN pip install -U pip && pip install pullapprove==3.17.0 RUN echo '#!/bin/sh -ex\npullapprove $@' > /entrypoint.sh && chmod +x /entrypoint.sh diff --git a/LICENSE b/LICENSE index e002dc0..07f50be 100644 --- a/LICENSE +++ b/LICENSE @@ -14,7 +14,7 @@ Additional Use Grant: You may make use of the Licensed Work, provided that you d Work so that such third parties directly benefit from the code review automation features of the Licensed Work. -Change Date: 2024-11-16 +Change Date: 2024-12-09 Change License: Apache License, Version 2.0 diff --git a/pyproject.toml b/pyproject.toml index 3733da5..25348f8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pullapprove" -version = "3.16.1" +version = "3.17.0" description = "PullApprove is a framework for code review assignment, processes, and policies that integrates natively with your git host." authors = ["Dropseed "] license = "Business Source License"