Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryu-CZ committed Sep 20, 2022
2 parents 028b6a5 + 8930588 commit e85d652
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [0.4.0] - 2022-09-20

### Changed

- Set LICENSE to _BSD-3-Clause_.

## [0.3.1] - 2022-09-07

### Modify
### Changed

- Use latest droid fonts for Swagger UI.

Expand All @@ -21,7 +27,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [0.2.1] - 2022-08-31

### Modify
### Changed

- Extend `reqparse` patch to [pattern is properly set on list objects](https://github.com/python-restx/flask-restx/pull/453), thanks to
alexissavin for noticing this.
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ authors = [
]
description = "Monkey patches to keep flask-restx working with latest flask and werkzeug."
readme = "README.md"
license = { text = "GNU General Public License v3 (GPLv3)" }
license = { text = "BSD-3-Clause" }
requires-python = ">=3.7"
dependencies = [
'flask-restx',
'flask-restx>=0.1',
]
keywords = [
"restx",
Expand All @@ -27,7 +27,7 @@ keywords = [
"python",
]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
Expand Down
2 changes: 1 addition & 1 deletion src/restx_monkey/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import pkg_resources

VERSION = (0, 3, 1)
VERSION = (0, 4, 0)
__version__ = ".".join(map(str, VERSION))

__all__ = (
Expand Down

0 comments on commit e85d652

Please sign in to comment.