From c7113ce386907818f8d31496a1442696eecc6985 Mon Sep 17 00:00:00 2001 From: Joshua Fehler Date: Wed, 12 May 2021 10:25:07 -0400 Subject: [PATCH] Bump version to 0.26.1 --- CHANGELOG.md | 4 ++++ docs/conf.py | 4 ++-- setup.py | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6813ee72..c97de041 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog All notable changes to this project will be documented in this file. +## [0.26.1] - 2021-05-12 +### Fixed +- If XHRSpy.add() is called multiple times on the same page, the hook is only added once. + ## [0.26.0] - 2021-03-22 ### Added - Network spies to assist with navigating async web apps diff --git a/docs/conf.py b/docs/conf.py index cb4315f5..e6c261c3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -60,9 +60,9 @@ # built documents. # # The short X.Y version. -version = '0.26.0' +version = '0.26.1' # The full version, including alpha/beta/rc tags. -release = '0.26.0' +release = '0.26.1' # 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 a87b84f3..683480ee 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ def read(filename): setup( name="stere", - version="0.26.0", + version="0.26.1", description="A nice way of implementing the Page Object pattern.", long_description=read('README.rst'), author="Joshua Fehler",