Skip to content

Commit

Permalink
chore: 3.0.0 Release (#280)
Browse files Browse the repository at this point in the history
`rororo==3.0.0` release drops Python 3.6 support, as well as ensures that latest versions of dependent libraries, such as `attrs`, `aiohttp-middlewares`, and `environ-config` can be installed alongside _rororo_.

Features:
---------

- **BREAKING CHANGE:** Drop Python 3.6 support (#276)

Other:
------

- (**deps**) bump isodate from 0.6.0 to 0.6.1 (#222)
- Fix example code in README (#224)
- (**deps-dev**) bump mypy from 0.910 to 0.920 (#223)
- (**deps**) bump attrs from 21.2.0 to 21.4.0 (#227)
- (**deps-dev**) bump aioredis from 2.0.0 to 2.0.1 (#225)
- (**deps-dev**) bump mypy from 0.920 to 0.930 (#226)
- (**deps**) bump peter-evans/create-pull-request from 3.11.0 to 3.12.0 (#228)
- Update Python dev version to 3.10.1 (#229)
- Fix operations typo (#230)
- Fix more typos in README and code (#232)
- (**deps**) bump pypa/gh-action-pypi-publish from 1.4.2 to 1.5.0 (#238)
- Fix links in documentation (#234)
- (**deps**) bump peter-evans/create-pull-request from 3.12.0 to 3.12.1 (#237)
- (**deps-dev**) bump mypy from 0.930 to 0.931 (#235)
- (**deps-dev**) bump types-pyyaml from 6.0.1 to 6.0.4 (#236)
- (**deps**) bump pre-commit/action from 2.0.3 to 3.0.0 (#265)
- (**deps**) bump pypa/gh-action-pypi-publish from 1.5.0 to 1.5.1 (#271)
- (**deps**) bump tibdex/github-app-token from 1.5 to 1.6 (#272)
- (**deps**) bump peter-evans/create-pull-request from 3.12.1 to 4.0.4 (#266)
- Sync common project files (#279)

Co-authored-by: playpauseandstop <[email protected]>
  • Loading branch information
1 parent 2a44bde commit f4ce5e6
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 4 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,37 @@
3.0.0 (2022-08-09)
==================

``rororo==3.0.0`` release drops Python 3.6 support, as well as ensures that latest versions
of dependent libraries, such as ``attrs``, ``aiohttp-middlewares``, and ``environ-config``
can be installed alongside *rororo*.

**Features:**

- **BREAKING CHANGE:** Drop Python 3.6 support (#276)

**Other:**

- (**deps**) bump isodate from 0.6.0 to 0.6.1 (#222)
- Fix example code in README (#224)
- (**deps-dev**) bump mypy from 0.910 to 0.920 (#223)
- (**deps**) bump attrs from 21.2.0 to 21.4.0 (#227)
- (**deps-dev**) bump aioredis from 2.0.0 to 2.0.1 (#225)
- (**deps-dev**) bump mypy from 0.920 to 0.930 (#226)
- (**deps**) bump peter-evans/create-pull-request from 3.11.0 to 3.12.0 (#228)
- Update Python dev version to 3.10.1 (#229)
- Fix operations typo (#230)
- Fix more typos in README and code (#232)
- (**deps**) bump pypa/gh-action-pypi-publish from 1.4.2 to 1.5.0 (#238)
- Fix links in documentation (#234)
- (**deps**) bump peter-evans/create-pull-request from 3.12.0 to 3.12.1 (#237)
- (**deps-dev**) bump mypy from 0.930 to 0.931 (#235)
- (**deps-dev**) bump types-pyyaml from 6.0.1 to 6.0.4 (#236)
- (**deps**) bump pre-commit/action from 2.0.3 to 3.0.0 (#265)
- (**deps**) bump pypa/gh-action-pypi-publish from 1.5.0 to 1.5.1 (#271)
- (**deps**) bump tibdex/github-app-token from 1.5 to 1.6 (#272)
- (**deps**) bump peter-evans/create-pull-request from 3.12.1 to 4.0.4 (#266)
- Sync common project files (#279)

2.4.1 (2021-12-16)
==================

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

[tool.poetry]
name = "rororo"
version = "2.4.1"
version = "3.0.0"
description = "aiohttp.web OpenAPI 3 schema first server applications."
authors = ["Igor Davydenko <[email protected]>"]
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 @@ -43,4 +43,4 @@

__author__ = "Igor Davydenko"
__license__ = "BSD-3-Clause"
__version__ = "2.4.1"
__version__ = "3.0.0"
2 changes: 1 addition & 1 deletion tests/rororo/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.4.1",
"version": "3.0.0",
"contact": {
"name": "Igor Davydenko (developer)",
"url": "https://igordavydenko.com",
Expand Down
2 changes: 1 addition & 1 deletion tests/rororo/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.4.1"
version: "3.0.0"
contact:
name: "Igor Davydenko (developer)"
url: "https://igordavydenko.com"
Expand Down

0 comments on commit f4ce5e6

Please sign in to comment.