Skip to content

Commit

Permalink
bump version: 2.0.0 -> 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
thilp committed Sep 30, 2022
1 parent 4ab7668 commit bcb8991
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 3 deletions.
33 changes: 33 additions & 0 deletions docs/Changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,39 @@ The format is based on `Keep a Changelog`_, and this project adheres to
:local:
:depth: 1

.. _v3.0.0:

v3.0.0
======

- Release date: 2022-09-30 19:50

- Diff__.

__ https://github.com/zalando-incubator/transformer/compare/v2.0.0...v3.0.0

Changed
-------

The `.urlignore` file is no longer supported.
It is replaced by an `.ignore` file, where each line is a **regular
expression** applied to **the whole URL** (:pr:`80`).
By contrast, each line of the `.urlignore` file was a fixed string, and
Transformer was looking for it to appear as-is in the *domain* part only.

Therefore, you should **be careful when migrating** your `.urlignore` into
`.ignore` files; a simple copy-and-paste may result in some requests being
handled differently.

Thank you :user:`cyberw` for this feature request and for contributing the
implementation!

Removed
-------

The lowest version of Python supported by Transformer is now 3.7.
Python 3.6 is no longer supported.

.. _v2.0.0:

v2.0.0
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
author = "the Zalando maintainers"

# The short X.Y version
version = "2.0"
version = "3.0"
# The full version, including alpha/beta/rc tags
release = "2.0.0"
release = "3.0.0"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "har-transformer"
version = "2.0.0"
version = "3.0.0"
description = "A tool to convert HAR files into a locustfile."
authors = [
"Serhii Cherniavskyi <[email protected]>",
Expand Down

0 comments on commit bcb8991

Please sign in to comment.