Skip to content

Commit

Permalink
Bump 1.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
amureki committed Oct 14, 2023
1 parent 01ba314 commit dd17c16
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 7 deletions.
5 changes: 4 additions & 1 deletion .readthedocs.yaml
Expand Up @@ -7,7 +7,10 @@ build:

python:
install:
- requirements: docs/requirements.txt
- method: pip
path: .
extra_requirements:
- docs

sphinx:
configuration: docs/source/conf.py
10 changes: 8 additions & 2 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased](https://github.com/model-bakers/model_bakery/tree/main)

### Added

### Changed

### Removed

## [1.16.0](https://pypi.org/project/model-bakery/1.16.0/)

### Added
- [dev] Test coverage report

Expand All @@ -16,8 +24,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- [dev] Update `pre-commit` config
- [dev] CI: remove hard requirement on linters for tests to run

### Removed

## [1.15.0](https://pypi.org/project/model-bakery/1.15.0/)

### Added
Expand Down
2 changes: 0 additions & 2 deletions docs/requirements.txt

This file was deleted.

9 changes: 8 additions & 1 deletion docs/source/conf.py
@@ -1,7 +1,14 @@
import os
import sys

sys.path.insert(0, os.path.abspath("../.."))

from model_bakery import __about__ # noqa

project = "Model Bakery"
copyright = "2023, Rust Saiargaliev"
author = "Rust Saiargaliev"
version = release = "1.15.0"
version = release = __about__.__version__

extensions = []

Expand Down
2 changes: 1 addition & 1 deletion model_bakery/__about__.py
@@ -1 +1 @@
__version__ = "1.15.0"
__version__ = "1.16.0"
4 changes: 4 additions & 0 deletions pyproject.toml
Expand Up @@ -51,6 +51,10 @@ test = [
"ruff",
"mypy",
]
docs = [
"Sphinx",
"sphinx-rtd-theme",
]

[project.urls]
Homepage = "https://github.com/model-bakers/model_bakery"
Expand Down

0 comments on commit dd17c16

Please sign in to comment.