Skip to content

Commit

Permalink
Update to v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Blake Watters committed Sep 3, 2020
1 parent 2a386d4 commit 70d195c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,15 @@ This changelog catalogs all notable changes made to the project. The format
is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). Releases are
versioned in accordance with [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.2.1] - 2020-09-03

### Changed:
- Removed direct dependency on `httpx` in favor of `servo` dependency.

## [0.2.0] - 2020-08-30

Updated servox target dependency to v0.6.0
### Changed
- Updated servox target dependency to v0.6.0

## [0.1.0] - 2020-08-23

Expand Down
8 changes: 4 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "servo-webhooks"
version = "0.2.0"
version = "0.2.1"
description = "A flexible webhooks connector for Opsani Servo assemblies"
authors = ["Blake Watters <[email protected]>"]
license = "Apache-2.0"
Expand All @@ -10,7 +10,6 @@ repository = "https://github.com/opsani/servo-webhooks"

[tool.poetry.dependencies]
python = "^3.8"
httpx = "^0.13.3"
servox = "^0.6.0"

[tool.poetry.dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion test_servo_webhooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def metrics(self) -> List[Metric]:
]

def test_version():
assert __version__ == '0.2.0'
assert __version__ == '0.2.1'

@respx.mock
async def test_webhook() -> None:
Expand Down

0 comments on commit 70d195c

Please sign in to comment.