From d2601157d861165bf223e69f5918c78ac6080bea Mon Sep 17 00:00:00 2001 From: zethson Date: Mon, 31 Jan 2022 20:54:54 +0100 Subject: [PATCH] Bump version from 0.1.1 to 0.1.2 --- .cookietemple.yml | 2 +- .github/release-drafter.yml | 4 ++-- cookietemple.cfg | 2 +- docs/conf.py | 4 ++-- pypi_latest/__init__.py | 2 +- pyproject.toml | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.cookietemple.yml b/.cookietemple.yml index 91a19f1..1e42703 100644 --- a/.cookietemple.yml +++ b/.cookietemple.yml @@ -16,5 +16,5 @@ email: lukas.heumos@posteo.net project_name: pypi-latest project_short_description: Verify that currently installed version is the latest one released on PyPI and update it if not. -version: 0.1.1 +version: 0.1.2 license: Apache2.0 diff --git a/.github/release-drafter.yml b/.github/release-drafter.yml index 72482dd..9bd97a9 100644 --- a/.github/release-drafter.yml +++ b/.github/release-drafter.yml @@ -1,5 +1,5 @@ -name-template: "0.1.1 🌈" # <> -tag-template: 0.1.1 # <> +name-template: "0.1.2 🌈" # <> +tag-template: 0.1.2 # <> categories: - title: "🚀 Features" labels: diff --git a/cookietemple.cfg b/cookietemple.cfg index 9a9aba8..544e598 100644 --- a/cookietemple.cfg +++ b/cookietemple.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.1 +current_version = 0.1.2 [bumpversion_files_whitelisted] init_file = pypi_latest/__init__.py diff --git a/docs/conf.py b/docs/conf.py index 21ec9fe..a9658f7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -52,9 +52,9 @@ # the built documents. # # The short X.Y version. -version = "0.1.1" +version = "0.1.2" # The full version, including alpha/beta/rc tags. -release = "0.1.1" +release = "0.1.2" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pypi_latest/__init__.py b/pypi_latest/__init__.py index 6e87a64..1bbd4ad 100644 --- a/pypi_latest/__init__.py +++ b/pypi_latest/__init__.py @@ -2,7 +2,7 @@ __author__ = "Lukas Heumos" __email__ = "lukas.heumos@posteo.net" -__version__ = "0.1.1" +__version__ = "0.1.2" import json import logging diff --git a/pyproject.toml b/pyproject.toml index ab7d64a..fc9016f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pypi-latest" -version = "0.1.1" # <> +version = "0.1.2" # <> description = "Verify that currently installed version is the latest one released on PyPI and update it if not." authors = ["Lukas Heumos "] license = "Apache2.0"