Skip to content

Commit

Permalink
3.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jlrpnbbngtn authored Feb 9, 2022
1 parent 9ab450d commit 4e6ad37
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
Brewtils Changelog
==================

3.11.0
------
2/9/2022
^^^^^^^^^

New Features
^^^^^^^^^^^^
- ``get_gardens`` (list of all Gardens) and ``update_garden`` (apply a new definition to an existing Garden) added to easy client

Other Changes
^^^^^^^^^^^^^
- Permission field added to ``UserSchema``.

3.10.0
------
1/4/2022
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ format: ## Run black formatter in-line
# Linting
lint: ## check style with flake8
flake8 $(MODULE_NAME) $(TEST_DIR)
black --target-version py27 --check $(MODULE_NAME) $(TEST_DIR)
black --check $(MODULE_NAME) $(TEST_DIR)


# Testing / Coverage
Expand Down
2 changes: 1 addition & 1 deletion brewtils/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-

__version__ = "3.10.0"
__version__ = "3.11.0"
2 changes: 1 addition & 1 deletion test/request_handling_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def __init__(self, foo):
"output,expected",
[
("foo", "foo"),
(u"foo", "foo"),
("foo", "foo"),
({"foo": "bar"}, json.dumps({"foo": "bar"})),
(["foo", "bar"], json.dumps(["foo", "bar"])),
# TypeError
Expand Down

0 comments on commit 4e6ad37

Please sign in to comment.