Skip to content

Commit

Permalink
chore: 2.0.2 Release
Browse files Browse the repository at this point in the history
Features:
---------

- Depend on `attrs>=19.1,<21` to allow install `attrs==20.1.0` in
  dependent projects

Other:
------

- Massive infrastructure update: move code to `src/` directory, use
  latest `pytest` for tests, better `Makefile` targets, etc
  • Loading branch information
playpauseandstop committed Sep 4, 2020
1 parent 8841aa2 commit ed61e27
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@
Changelog
=========

2.0.2 (2020-09-04)
==================

**Features:**

- Depend on ``attrs>=19.1,<21`` to allow use ``attrs==20.1.0`` in dependent
projects

**Other:**

- Massive infrastrucutre update: move code to ``src/`` directory, use latest
``pytest`` for tests, better ``Makefile`` targets, etc

2.0.1 (2020-07-21)
==================

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ show_missing = true

[tool.poetry]
name = "rororo"
version = "2.0.2a0"
version = "2.0.2"
description = "aiohttp.web OpenAPI 3 schema first server applications."
authors = ["Igor Davydenko <iam@igordavydenko.com>"]
license = "BSD-3-Clause"
Expand Down
2 changes: 1 addition & 1 deletion src/rororo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@

__author__ = "Igor Davydenko"
__license__ = "BSD-3-Clause"
__version__ = "2.0.2a0"
__version__ = "2.0.2"
2 changes: 1 addition & 1 deletion tests/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"openapi": "3.0.3",
"info": {
"title": "rororo",
"version": "2.0.1",
"version": "2.0.2",
"contact": {
"name": "Igor Davydenko (developer)",
"url": "https://igordavydenko.com",
Expand Down
2 changes: 1 addition & 1 deletion tests/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: "3.0.3"

info:
title: "rororo"
version: "2.0.1"
version: "2.0.2"
contact:
name: "Igor Davydenko (developer)"
url: "https://igordavydenko.com"
Expand Down

0 comments on commit ed61e27

Please sign in to comment.