Skip to content

Commit

Permalink
Adds searchbox, updates deps, closes #3
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn committed Feb 18, 2019
1 parent 041857f commit 538c5ac
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 38 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@ We follow Semantic Versions since the `0.1.0` release.
- Adds `compose` function


### Misc

- Updates multiple dev-dependencies, including `mypy`
- Now search in the docs is working again
- Relicenses this project to `BSD`
- Fixes copyright notice in the docs


## Version 0.4.0 aka Goodbye, Monads!

### Features
Expand Down
5 changes: 3 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ def _get_project_meta():

pkg_meta = _get_project_meta()
project = pkg_meta['name']
copySuccess = '2019, wemake.services' # noqa: A001
author = 'wemake.services'
copyright = '2019, dry-python team' # noqa: A001
author = 'dry-python team'

# The short X.Y version
version = pkg_meta['version']
Expand Down Expand Up @@ -138,6 +138,7 @@ def _get_project_meta():
'logo.html',
'globaltoc.html',
'github.html',
'searchbox.html',
'moreinfo.html',
],
}
Expand Down
2 changes: 1 addition & 1 deletion docs/pages/functions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ We also ship an utility function to compose two different functions together.
Composition is also type-safe.
The only limitation is that we only support
functions with one argument and one return.
functions with one argument and one return to be composed.

API Reference
-------------
Expand Down
65 changes: 33 additions & 32 deletions poetry.lock

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

3 changes: 0 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,6 @@ per-file-ignores =
**/*.py: D100, D401, X100
# Disable some `.pyi` specific warings:
**/*.pyi: D101, D102, D103, D107, Z444, Z452
# TODO: fix check and remove it from ignores
**/*.py: Z454
**/*.pyi: Z454


[tool:pytest]
Expand Down

0 comments on commit 538c5ac

Please sign in to comment.