From a62bae015f0e550559b440185d2d4b4000d2c818 Mon Sep 17 00:00:00 2001 From: Joshua Fehler Date: Mon, 22 Mar 2021 11:21:56 -0400 Subject: [PATCH] Bump version to 0.26.0 --- CHANGELOG.md | 3 +++ docs/conf.py | 4 ++-- setup.py | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c0ffcf79..6813ee72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # Changelog All notable changes to this project will be documented in this file. +## [0.26.0] - 2021-03-22 +### Added +- Network spies to assist with navigating async web apps ## [0.25.0] - 2021-02-24 ### Added diff --git a/docs/conf.py b/docs/conf.py index 3152214b..cb4315f5 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -60,9 +60,9 @@ # built documents. # # The short X.Y version. -version = '0.25.0' +version = '0.26.0' # The full version, including alpha/beta/rc tags. -release = '0.25.0' +release = '0.26.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 6042c856..2ce52e2a 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ def read(filename): setup( name="stere", - version="0.25.0", + version="0.26.0", description="A nice way of implementing the Page Object pattern.", long_description=read('README.rst'), author="Joshua Fehler",